Show / Hide Table of Contents

Class CreateCortanaChannelResult

The configuration for a Cortana channel.

Inheritance
object
CreateChannelResult
CreateCortanaChannelResult
Inherited Members
CreateChannelResult.Id
CreateChannelResult.Name
CreateChannelResult.Description
CreateChannelResult.Category
CreateChannelResult.SessionExpiryDurationInMilliseconds
CreateChannelResult.LifecycleState
CreateChannelResult.TimeCreated
CreateChannelResult.TimeUpdated
CreateChannelResult.FreeformTags
CreateChannelResult.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 CreateCortanaChannelResult : CreateChannelResult

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

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

In this article
Back to top