Class AccountSettingsResult
Represents the response from updating account settings, including the current webhook URLs and rate limits.
public class AccountSettingsResult
- Inheritance
-
AccountSettingsResult
- Inherited Members
Properties
DrCallbackurl
The current or updated webhook URL for delivery receipts (DR - Delivery Receipt).
[JsonProperty("dr-callback-url")]
public string DrCallbackurl { get; set; }
Property Value
MaxCallsPerSecond
The maximum number of API calls allowed per second.
[JsonProperty("max-calls-per-second")]
public decimal MaxCallsPerSecond { get; set; }
Property Value
MaxInboundRequest
The maximum number of inbound messages allowed per second.
[JsonProperty("max-inbound-request")]
public decimal MaxInboundRequest { get; set; }
Property Value
MaxOutboundRequest
The maximum number of outbound messages allowed per second.
[JsonProperty("max-outbound-request")]
public decimal MaxOutboundRequest { get; set; }
Property Value
MoCallbackUrl
The current or updated webhook URL for inbound SMS messages (MO - Mobile Originated).
[JsonProperty("mo-callback-url")]
public string MoCallbackUrl { get; set; }