Package com.mailersend.sdk.emails
Class BulkSendStatus
- java.lang.Object
-
- com.mailersend.sdk.emails.BulkSendStatus
-
public class BulkSendStatus extends Object
BulkSendStatus class.
- Version:
- $Id: $Id
- Author:
- mailersend
-
-
Field Summary
Fields Modifier and Type Field Description DatecreatedAtprotected StringcreatedAtStringStringidString[]messagesIdStringstatecom.google.gson.JsonObjectsuppressedRecipientsintsuppressedRecipientsCountinttotalRecipientsCountDateupdatedAtprotected StringupdatedAtStringcom.google.gson.JsonObjectvalidationErrorsintvalidationErrorsCount
-
Constructor Summary
Constructors Constructor Description BulkSendStatus()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected voidparseDates()Converts the retrieved dates to java.util.Date
-
-
-
Field Detail
-
id
@SerializedName("id") public String id
-
state
@SerializedName("state") public String state
-
totalRecipientsCount
@SerializedName("total_recipients_count") public int totalRecipientsCount
-
suppressedRecipientsCount
@SerializedName("suppressed_recipients_count") public int suppressedRecipientsCount
-
suppressedRecipients
@SerializedName("suppressed_recipients") public com.google.gson.JsonObject suppressedRecipients
-
validationErrorsCount
@SerializedName("validation_errors_count") public int validationErrorsCount
-
validationErrors
@SerializedName("validation_errors") public com.google.gson.JsonObject validationErrors
-
messagesId
@SerializedName("messages_id") public String[] messagesId
-
createdAt
public Date createdAt
-
updatedAt
public Date updatedAt
-
createdAtString
@SerializedName("created_at") protected String createdAtString
-
updatedAtString
@SerializedName("updated_at") protected String updatedAtString
-
-