Class: OpenAI::Models::Skills::SkillVersion
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- OpenAI::Models::Skills::SkillVersion
- Defined in:
- lib/openai/models/skills/skill_version.rb
Overview
Instance Attribute Summary collapse
-
#created_at ⇒ Integer
Unix timestamp (seconds) for when the version was created.
-
#description ⇒ String
Description of the skill version.
-
#id ⇒ String
Unique identifier for the skill version.
-
#name ⇒ String
Name of the skill version.
-
#object ⇒ Symbol, :"skill.version"
The object type, which is
skill.version. -
#skill_id ⇒ String
Identifier of the skill for this version.
-
#version ⇒ String
Version number for this skill.
Method Summary
Methods inherited from Internal::Type::BaseModel
#==, ==, #[], coerce, #deconstruct_keys, #deep_to_h, dump, fields, hash, #hash, inherited, #initialize, inspect, #inspect, known_fields, optional, recursively_to_h, required, #to_h, #to_json, #to_s, to_sorbet_type, #to_yaml
Methods included from Internal::Type::Converter
#coerce, coerce, #dump, dump, inspect, #inspect, meta_info, new_coerce_state, type_info
Methods included from Internal::Util::SorbetRuntimeSupport
#const_missing, #define_sorbet_constant!, #sorbet_constant_defined?, #to_sorbet_type, to_sorbet_type
Constructor Details
This class inherits a constructor from OpenAI::Internal::Type::BaseModel
Instance Attribute Details
#created_at ⇒ Integer
Unix timestamp (seconds) for when the version was created.
18 |
# File 'lib/openai/models/skills/skill_version.rb', line 18 required :created_at, Integer |
#description ⇒ String
Description of the skill version.
24 |
# File 'lib/openai/models/skills/skill_version.rb', line 24 required :description, String |
#id ⇒ String
Unique identifier for the skill version.
12 |
# File 'lib/openai/models/skills/skill_version.rb', line 12 required :id, String |
#name ⇒ String
Name of the skill version.
30 |
# File 'lib/openai/models/skills/skill_version.rb', line 30 required :name, String |
#object ⇒ Symbol, :"skill.version"
The object type, which is skill.version.
36 |
# File 'lib/openai/models/skills/skill_version.rb', line 36 required :object, const: :"skill.version" |
#skill_id ⇒ String
Identifier of the skill for this version.
42 |
# File 'lib/openai/models/skills/skill_version.rb', line 42 required :skill_id, String |
#version ⇒ String
Version number for this skill.
48 |
# File 'lib/openai/models/skills/skill_version.rb', line 48 required :version, String |