Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,9 @@ public String getResponseMessage() {
case InvalidTemplateId:
return "An invalid TemplateId was found in the message";

case MetadataOrTagsAreTooLarge:
return "Metadata and tags exceed 12.5KB";

case TemplateHasNoContent:
return "The specified TemplateId has no content for the message";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,9 @@ public enum SendResult {
/** SDK Validation Error: Expected messageType of basic or bulk */
MessageValidationInvalidCustomHeaders,
/** SDK Validation Error: Message contains invalid metadata */
MessageValidationInvalidMetadata;
MessageValidationInvalidMetadata,
/** Metadata and tags exceed 12.5KB */
MetadataOrTagsAreTooLarge;

/**
* Convert a String into a SendResult enum
Expand Down