Show / Hide Table of Contents

Class CreateNewDigitalAssistantDetails

Properties that are required to create a Digital Assistant from scratch.

Inheritance
object
CreateDigitalAssistantDetails
CreateNewDigitalAssistantDetails
Inherited Members
CreateDigitalAssistantDetails.Category
CreateDigitalAssistantDetails.Description
CreateDigitalAssistantDetails.PlatformVersion
CreateDigitalAssistantDetails.MultilingualMode
CreateDigitalAssistantDetails.PrimaryLanguageTag
CreateDigitalAssistantDetails.FreeformTags
CreateDigitalAssistantDetails.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 CreateNewDigitalAssistantDetails : CreateDigitalAssistantDetails

Properties

DisplayName

Declaration
[Required(ErrorMessage = "DisplayName is required.")]
[JsonProperty(PropertyName = "displayName")]
public string DisplayName { get; set; }
Property Value
Type Description
string

The resource's display name.

Remarks

Required

Name

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

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

Remarks

Required

NativeLanguageTags

Declaration
[JsonProperty(PropertyName = "nativeLanguageTags")]
public List<string> NativeLanguageTags { get; set; }
Property Value
Type Description
List<string>

A list of native languages supported by this resource.

Version

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

The resource's version. The version can only contain numbers, letters, periods, underscores, dashes or spaces. The version must begin with a letter or a number.

In this article
Back to top