Show / Hide Table of Contents

Class CreateDigitalAssistantDetails

Properties that are required to create a Digital Assistant.

Inheritance
object
CreateDigitalAssistantDetails
CloneDigitalAssistantDetails
CreateDigitalAssistantVersionDetails
CreateNewDigitalAssistantDetails
ExtendDigitalAssistantDetails
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(CreateDigitalAssistantDetailsModelConverter))]
public class CreateDigitalAssistantDetails

Properties

Category

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

The resource's category. This is used to group resource's together.

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 resource.

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"}

MultilingualMode

Declaration
[JsonProperty(PropertyName = "multilingualMode")]
[JsonConverter(typeof(StringEnumConverter))]
public BotMultilingualMode? MultilingualMode { get; set; }
Property Value
Type Description
BotMultilingualMode?

The multilingual mode for the resource.

PlatformVersion

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

The ODA Platform Version for this resource.

PrimaryLanguageTag

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

The primary language for the resource.

In this article
Back to top