Class CreateTwilioChannelResult
The configuration for a Twilio channel.
Inherited Members
Namespace: Oci.OdaService.Models
Assembly: OCI.DotNetSDK.Oda.dll
Syntax
public class CreateTwilioChannelResult : CreateChannelResult
Properties
AccountSID
Declaration
[Required(ErrorMessage = "AccountSID is required.")]
[JsonProperty(PropertyName = "accountSID")]
public string AccountSID { get; set; }
Property Value
Type | Description |
---|---|
string | The Account SID for the Twilio number. |
Remarks
Required
BotId
Declaration
[JsonProperty(PropertyName = "botId")]
public string BotId { get; set; }
Property Value
Type | Description |
---|---|
string | The ID of the Skill or Digital Assistant that the Channel is routed to. |
IsMmsEnabled
Declaration
[Required(ErrorMessage = "IsMmsEnabled is required.")]
[JsonProperty(PropertyName = "isMmsEnabled")]
public bool? IsMmsEnabled { get; set; }
Property Value
Type | Description |
---|---|
bool? | Whether MMS is enabled for this channel or not. |
Remarks
Required
OriginalConnectorsUrl
Declaration
[JsonProperty(PropertyName = "originalConnectorsUrl")]
public string OriginalConnectorsUrl { get; set; }
Property Value
Type | Description |
---|---|
string | The original connectors URL (used for backward compatibility). |
PhoneNumber
Declaration
[Required(ErrorMessage = "PhoneNumber is required.")]
[JsonProperty(PropertyName = "phoneNumber")]
public string PhoneNumber { get; set; }
Property Value
Type | Description |
---|---|
string | The Twilio phone number. |
Remarks
Required
WebhookUrl
Declaration
[Required(ErrorMessage = "WebhookUrl is required.")]
[JsonProperty(PropertyName = "webhookUrl")]
public string WebhookUrl { get; set; }
Property Value
Type | Description |
---|---|
string | The URL to use to send messages to this channel. This will be generally be used to configure a webhook in a 3rd party messaging system to send messages to this channel. |
Remarks
Required