Show / Hide Table of Contents

Class UpdateSlackChannelDetails

Properties to update a Slack channel.

Inheritance
object
UpdateChannelDetails
UpdateSlackChannelDetails
Inherited Members
UpdateChannelDetails.Name
UpdateChannelDetails.Description
UpdateChannelDetails.SessionExpiryDurationInMilliseconds
UpdateChannelDetails.FreeformTags
UpdateChannelDetails.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 UpdateSlackChannelDetails : UpdateChannelDetails

Properties

AuthErrorUrl

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

The URL to redirect to when authentication is unsuccessful.

AuthSuccessUrl

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

The URL to redirect to when authentication is successful.

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.

ClientId

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

The Slack Client Id for the Slack app.

ClientSecret

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

The Client Secret for the Slack App.

SigningSecret

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

The Signing Secret for the Slack App.

In this article
Back to top