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() {
189
189
case InvalidTemplateId :
190
190
return "An invalid TemplateId was found in the message" ;
191
191
192
+ case MetadataOrTagsAreTooLarge :
193
+ return "Metadata and tags exceed 12.5KB" ;
194
+
192
195
case TemplateHasNoContent :
193
196
return "The specified TemplateId has no content for the message" ;
194
197
Original file line number Diff line number Diff line change @@ -79,7 +79,9 @@ public enum SendResult {
79
79
/** SDK Validation Error: Expected messageType of basic or bulk */
80
80
MessageValidationInvalidCustomHeaders ,
81
81
/** SDK Validation Error: Message contains invalid metadata */
82
- MessageValidationInvalidMetadata ;
82
+ MessageValidationInvalidMetadata ,
83
+ /** Metadata and tags exceed 12.5KB */
84
+ MetadataOrTagsAreTooLarge ;
83
85
84
86
/**
85
87
* Convert a String into a SendResult enum
You can’t perform that action at this time.
0 commit comments