Show / Hide Table of Contents

Class CreateCortanaChannelDetails

Properties required to create a Cortana channel.

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

Properties

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.

MsaAppId

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

The Microsoft App ID that you obtained when you created your bot registration in Azure.

Remarks

Required

MsaAppPassword

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

The client secret that you obtained from your bot registration.

Remarks

Required

In this article
Back to top