Show / Hide Table of Contents

Class ExtendSkillDetails

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

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

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 Skill 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