Show / Hide Table of Contents

Class CreateFacebookChannelDetails

Properties required to create a Facebook channel.

Inheritance
object
CreateChannelDetails
CreateFacebookChannelDetails
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 CreateFacebookChannelDetails : CreateChannelDetails

Properties

AppSecret

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

The app secret for your Facebook app.

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.

PageAccessToken

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

The page access token that you generated for your Facebook page.

Remarks

Required

In this article
Back to top