Show / Hide Table of Contents

Class ExtendDigitalAssistantDetails

Properties that are required to create a new Digital Assistant by extending an existing Digital Assistant.

Inheritance
object
CreateDigitalAssistantDetails
ExtendDigitalAssistantDetails
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 ExtendDigitalAssistantDetails : 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

Id

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

The unique identifier of the Digital Assistant to extend.

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

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