Table of Contents

Class AccountSettingsResult

Namespace
Vonage.Accounts
Assembly
Vonage.dll

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

string

MaxCallsPerSecond

The maximum number of API calls allowed per second.

[JsonProperty("max-calls-per-second")]
public decimal MaxCallsPerSecond { get; set; }

Property Value

decimal

MaxInboundRequest

The maximum number of inbound messages allowed per second.

[JsonProperty("max-inbound-request")]
public decimal MaxInboundRequest { get; set; }

Property Value

decimal

MaxOutboundRequest

The maximum number of outbound messages allowed per second.

[JsonProperty("max-outbound-request")]
public decimal MaxOutboundRequest { get; set; }

Property Value

decimal

MoCallbackUrl

The current or updated webhook URL for inbound SMS messages (MO - Mobile Originated).

[JsonProperty("mo-callback-url")]
public string MoCallbackUrl { get; set; }

Property Value

string