File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed
injectionApi/src/main/java/com/socketLabs/injectionApi Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -189,6 +189,9 @@ public String getResponseMessage() {
189189 case InvalidTemplateId :
190190 return "An invalid TemplateId was found in the message" ;
191191
192+ case MetadataOrTagsAreTooLarge :
193+ return "Metadata and tags exceed 12.5KB" ;
194+
192195 case TemplateHasNoContent :
193196 return "The specified TemplateId has no content for the message" ;
194197
Original file line number Diff line number Diff line change @@ -79,7 +79,9 @@ public enum SendResult {
7979 /** SDK Validation Error: Expected messageType of basic or bulk */
8080 MessageValidationInvalidCustomHeaders ,
8181 /** SDK Validation Error: Message contains invalid metadata */
82- MessageValidationInvalidMetadata ;
82+ MessageValidationInvalidMetadata ,
83+ /** Metadata and tags exceed 12.5KB */
84+ MetadataOrTagsAreTooLarge ;
8385
8486 /**
8587 * Convert a String into a SendResult enum
You can’t perform that action at this time.
0 commit comments