Show / Hide Table of Contents

Class CreateNewSkillDetails

Properties that are required to create a Skill from scratch.

Inheritance
object
CreateSkillDetails
CreateNewSkillDetails
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 CreateNewSkillDetails : 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

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
[Required(ErrorMessage = "Version is required.")]
[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.

Remarks

Required

In this article
Back to top