Show / Hide Table of Contents

Class UpdateChannelDetails

Properties to update a Channel.

Inheritance
object
UpdateChannelDetails
UpdateAndroidChannelDetails
UpdateAppEventChannelDetails
UpdateApplicationChannelDetails
UpdateCortanaChannelDetails
UpdateFacebookChannelDetails
UpdateIosChannelDetails
UpdateMSTeamsChannelDetails
UpdateOSSChannelDetails
UpdateOsvcChannelDetails
UpdateServiceCloudChannelDetails
UpdateSlackChannelDetails
UpdateTwilioChannelDetails
UpdateWebChannelDetails
UpdateWebhookChannelDetails
Inherited Members
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
[JsonConverter(typeof(UpdateChannelDetailsModelConverter))]
public class UpdateChannelDetails

Properties

DefinedTags

Declaration
[JsonProperty(PropertyName = "definedTags")]
public Dictionary<string, Dictionary<string, object>> DefinedTags { get; set; }
Property Value
Type Description
Dictionary<string, Dictionary<string, object>>

Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example: {"foo-namespace": {"bar-key": "value"}}

Description

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

A short description of the Channel.

FreeformTags

Declaration
[JsonProperty(PropertyName = "freeformTags")]
public Dictionary<string, string> FreeformTags { get; set; }
Property Value
Type Description
Dictionary<string, string>

Simple key-value pair that is applied without any predefined name, type, or scope. Example: {"bar-key": "value"}

Name

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

The Channel's name. The name can contain only letters, numbers, periods, and underscores. The name must begin with a letter.

SessionExpiryDurationInMilliseconds

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

The number of milliseconds before a session expires.

In this article
Back to top