File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed
src/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 @@ -98,7 +98,10 @@ public string ResponseMessage
9898 return "No valid message body was found in the message" ;
9999
100100 case SendResult . InvalidTemplateId :
101- return "MetadataOrTagsAreTooLarge => “Metadata and tags exceed 12.5KB" ;
101+ return "An invalid TemplateId was found in the message" ;
102+
103+ case SendResult . MetadataOrTagsAreTooLarge :
104+ return "Metadata and tags exceed 12.5KB" ;
102105
103106 case SendResult . TemplateHasNoContent :
104107 return "The specified TemplateId has no content for the message" ;
Original file line number Diff line number Diff line change @@ -194,5 +194,7 @@ public enum SendResult
194194 /// Invalid metadata found
195195 /// </summary>
196196 MessageValidationInvalidMetadata ,
197+ /** Metadata and tags exceed 12.5KB */
198+ MetadataOrTagsAreTooLarge
197199 }
198200}
You can’t perform that action at this time.
0 commit comments