Show / Hide Table of Contents

Class IosChannel

The configuration for an iOS channel.

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

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.

IsClientAuthenticationEnabled

Declaration
[Required(ErrorMessage = "IsClientAuthenticationEnabled is required.")]
[JsonProperty(PropertyName = "isClientAuthenticationEnabled")]
public bool? IsClientAuthenticationEnabled { get; set; }
Property Value
Type Description
bool?

Whether client authentication is enabled or not.

Remarks

Required

MaxTokenExpirationTimeInMinutes

Declaration
[JsonProperty(PropertyName = "maxTokenExpirationTimeInMinutes")]
public long? MaxTokenExpirationTimeInMinutes { get; set; }
Property Value
Type Description
long?

The maximum time until the token expires (in minutes).

In this article
Back to top