Show / Hide Table of Contents

Class CreateApplicationChannelDetails

Properties required to create an Application channel.

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

Properties

IsAuthenticatedUserId

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

True if the user id in the AIC message should be treated as an authenticated user id.

Remarks

Required

OutboundUrl

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

The URL to send response and error messages to.

In this article
Back to top