Show / Hide Table of Contents

Class UpdateTwilioChannelDetails

Properties to update a Twilio channel.

Inheritance
object
UpdateChannelDetails
UpdateTwilioChannelDetails
Inherited Members
UpdateChannelDetails.Name
UpdateChannelDetails.Description
UpdateChannelDetails.SessionExpiryDurationInMilliseconds
UpdateChannelDetails.FreeformTags
UpdateChannelDetails.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 UpdateTwilioChannelDetails : UpdateChannelDetails

Properties

AccountSID

Declaration
[JsonProperty(PropertyName = "accountSID")]
public string AccountSID { get; set; }
Property Value
Type Description
string

The Account SID for the Twilio number.

AuthToken

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

The Auth Token for the Twilio number.

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
[JsonProperty(PropertyName = "isMmsEnabled")]
public bool? IsMmsEnabled { get; set; }
Property Value
Type Description
bool?

Whether MMS is enabled for this channel or not.

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
[JsonProperty(PropertyName = "phoneNumber")]
public string PhoneNumber { get; set; }
Property Value
Type Description
string

The Twilio phone number.

In this article
Back to top