Show / Hide Table of Contents

Class Skill

Skill metadata.

Inheritance
object
Skill
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
public class Skill

Properties

BaseId

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

The unique identifier for the base reource (when this resource extends another).

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.

DialogVersion

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

The resource's dialog version.

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

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

Id

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

Unique immutable identifier that was assigned when the resource was created.

Remarks

Required

LifecycleDetails

Declaration
[Required(ErrorMessage = "LifecycleDetails is required.")]
[JsonProperty(PropertyName = "lifecycleDetails")]
[JsonConverter(typeof(ResponseEnumConverter))]
public BotPublishState? LifecycleDetails { get; set; }
Property Value
Type Description
BotPublishState?

The resource's publish state.

Remarks

Required

LifecycleState

Declaration
[Required(ErrorMessage = "LifecycleState is required.")]
[JsonProperty(PropertyName = "lifecycleState")]
[JsonConverter(typeof(ResponseEnumConverter))]
public LifecycleState? LifecycleState { get; set; }
Property Value
Type Description
LifecycleState?

The resource's current state.

Remarks

Required

MultilingualMode

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

The multilingual mode for the resource.

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

Namespace

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

The resource's namespace.

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.

PlatformVersion

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

The ODA Platform Version for this resource.

Remarks

Required

PrimaryLanguageTag

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

The primary language for the resource.

TimeCreated

Declaration
[Required(ErrorMessage = "TimeCreated is required.")]
[JsonProperty(PropertyName = "timeCreated")]
public DateTime? TimeCreated { get; set; }
Property Value
Type Description
DateTime?

When the resource was created. A date-time string as described in RFC 3339, section 14.29.

Remarks

Required

TimeUpdated

Declaration
[Required(ErrorMessage = "TimeUpdated is required.")]
[JsonProperty(PropertyName = "timeUpdated")]
public DateTime? TimeUpdated { get; set; }
Property Value
Type Description
DateTime?

When the resource was last updated. A date-time string as described in RFC 3339, section 14.29.

Remarks

Required

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