Class CreateSlackChannelResult
The configuration for a Slack channel.
Inherited Members
Namespace: Oci.OdaService.Models
Assembly: OCI.DotNetSDK.Oda.dll
Syntax
public class CreateSlackChannelResult : CreateChannelResult
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
[Required(ErrorMessage = "ClientId is required.")]
[JsonProperty(PropertyName = "clientId")]
public string ClientId { get; set; }
Property Value
Type | Description |
---|---|
string | The Slack Client Id for the Slack app. |
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