CreateSkillValueListEntityDetails

class oci.oda.models.CreateSkillValueListEntityDetails(**kwargs)

Bases: oci.oda.models.create_skill_entity_details.CreateSkillEntityDetails

Properties that are required to create a value list entity.

Attributes

TYPE_COMPOSITE str(object=’’) -> str
TYPE_ENUM_VALUES str(object=’’) -> str
name [Required] Gets the name of this CreateSkillEntityDetails.
type [Required] Gets the type of this CreateSkillEntityDetails.
values [Required] Gets the values of this CreateSkillValueListEntityDetails.

Methods

__init__(**kwargs) Initializes a new CreateSkillValueListEntityDetails object with values from keyword arguments.
get_subtype(object_dictionary) Given the hash representation of a subtype of this class, use the info in the hash to return the class of the subtype.
TYPE_COMPOSITE = 'COMPOSITE'
TYPE_ENUM_VALUES = 'ENUM_VALUES'
__init__(**kwargs)

Initializes a new CreateSkillValueListEntityDetails object with values from keyword arguments. The default value of the type attribute of this class is ENUM_VALUES and it should not be changed. The following keyword arguments are supported (corresponding to the getters/setters of this class):

Parameters:
  • name (str) – The value to assign to the name property of this CreateSkillValueListEntityDetails.
  • type (str) – The value to assign to the type property of this CreateSkillValueListEntityDetails. Allowed values for this property are: “COMPOSITE”, “ENUM_VALUES”
  • values (list[oci.oda.models.StaticEntityValue]) – The value to assign to the values property of this CreateSkillValueListEntityDetails.
static get_subtype(object_dictionary)

Given the hash representation of a subtype of this class, use the info in the hash to return the class of the subtype.

name

[Required] Gets the name of this CreateSkillEntityDetails. The entity name. This must be unique within the parent resource.

Returns:The name of this CreateSkillEntityDetails.
Return type:str
type

[Required] Gets the type of this CreateSkillEntityDetails. Type of skill entity.

Allowed values for this property are: “COMPOSITE”, “ENUM_VALUES”

Returns:The type of this CreateSkillEntityDetails.
Return type:str
values

[Required] Gets the values of this CreateSkillValueListEntityDetails. List of values for a value list entity.

Returns:The values of this CreateSkillValueListEntityDetails.
Return type:list[oci.oda.models.StaticEntityValue]