We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I think there's an error in the (C#) model for Message According to the documentation:
Message
Specifying a source number type is only valid when the source_number parameter is specified and is optional
However in the model, this is a non-nullable property:
/// <summary> /// Type of source address specified /// </summary> [JsonProperty("source_number_type", NullValueHandling = NullValueHandling.Ignore)] [JsonConverter(typeof(StringEnumConverter))] public NumberType SourceNumberType { get; set; }
I think this needs to be nullable
public NumberType? SourceNumberType { get; set; }
When I try to submit a message where this is non-nullable, the response fails with an internal error.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I think there's an error in the (C#) model for
Message
According to the documentation:
However in the model, this is a non-nullable property:
I think this needs to be nullable
When I try to submit a message where this is non-nullable, the response fails with an internal error.
The text was updated successfully, but these errors were encountered: