Show / Hide Table of Contents

Class CreateTwilioChannelDetails

Properties required to create a Twilio channel.

Inheritance
object
CreateChannelDetails
CreateTwilioChannelDetails
Inherited Members
CreateChannelDetails.Name
CreateChannelDetails.Description
CreateChannelDetails.SessionExpiryDurationInMilliseconds
CreateChannelDetails.FreeformTags
CreateChannelDetails.DefinedTags
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.OdaService.Models
Assembly: OCI.DotNetSDK.Oda.dll
Syntax
public class CreateTwilioChannelDetails : CreateChannelDetails

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

AuthToken

Declaration
[Required(ErrorMessage = "AuthToken is required.")]
[JsonProperty(PropertyName = "authToken")]
public string AuthToken { get; set; }
Property Value
Type Description
string

The Auth Token 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

In this article
Back to top