We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b148e45 + 9e48065 commit 6cfea62Copy full SHA for 6cfea62
src/SocketLabs/InjectionApi/SendResponse.cs
@@ -100,6 +100,9 @@ public string ResponseMessage
100
case SendResult.InvalidTemplateId:
101
return "An invalid TemplateId was found in the message";
102
103
+ case SendResult.MetadataOrTagsAreTooLarge:
104
+ return "Metadata and tags exceed 12.5KB";
105
+
106
case SendResult.TemplateHasNoContent:
107
return "The specified TemplateId has no content for the message";
108
src/SocketLabs/InjectionApi/SendResult.cs
@@ -194,5 +194,7 @@ public enum SendResult
194
/// Invalid metadata found
195
/// </summary>
196
MessageValidationInvalidMetadata,
197
+ /** Metadata and tags exceed 12.5KB */
198
+ MetadataOrTagsAreTooLarge
199
}
200
0 commit comments