Class: Anthropic::Models::Beta::Skills::VersionListResponse
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Anthropic::Models::Beta::Skills::VersionListResponse
- Defined in:
- lib/anthropic/models/beta/skills/version_list_response.rb
Overview
Instance Attribute Summary collapse
-
#created_at ⇒ String
ISO 8601 timestamp of when the skill version was created.
-
#description ⇒ String
Description of the skill version.
-
#directory ⇒ String
Directory name of the skill version.
-
#id ⇒ String
Unique identifier for the skill version.
-
#name ⇒ String
Human-readable name of the skill version.
-
#skill_id ⇒ String
Identifier for the skill that this version belongs to.
-
#type ⇒ String
Object type.
-
#version ⇒ String
Version identifier for the skill.
Instance Method Summary collapse
-
#initialize(id: , created_at: , description: , directory: , name: , skill_id: , type: , version: ) ⇒ void
constructor
Some parameter documentations has been truncated, see VersionListResponse for more details.
Methods inherited from Internal::Type::BaseModel
==, #==, #[], coerce, #deconstruct_keys, #deep_to_h, dump, fields, hash, #hash, inherited, 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
#initialize(id: , created_at: , description: , directory: , name: , skill_id: , type: , version: ) ⇒ void
Some parameter documentations has been truncated, see Anthropic::Models::Beta::Skills::VersionListResponse for more details.
|
|
# File 'lib/anthropic/models/beta/skills/version_list_response.rb', line 69
|
Instance Attribute Details
#created_at ⇒ String
ISO 8601 timestamp of when the skill version was created.
21 |
# File 'lib/anthropic/models/beta/skills/version_list_response.rb', line 21 required :created_at, String |
#description ⇒ String
Description of the skill version.
This is extracted from the SKILL.md file in the skill upload.
29 |
# File 'lib/anthropic/models/beta/skills/version_list_response.rb', line 29 required :description, String |
#directory ⇒ String
Directory name of the skill version.
This is the top-level directory name that was extracted from the uploaded files.
37 |
# File 'lib/anthropic/models/beta/skills/version_list_response.rb', line 37 required :directory, String |
#id ⇒ String
Unique identifier for the skill version.
The format and length of IDs may change over time.
15 |
# File 'lib/anthropic/models/beta/skills/version_list_response.rb', line 15 required :id, String |
#name ⇒ String
Human-readable name of the skill version.
This is extracted from the SKILL.md file in the skill upload.
45 |
# File 'lib/anthropic/models/beta/skills/version_list_response.rb', line 45 required :name, String |
#skill_id ⇒ String
Identifier for the skill that this version belongs to.
51 |
# File 'lib/anthropic/models/beta/skills/version_list_response.rb', line 51 required :skill_id, String |
#type ⇒ String
Object type.
For Skill Versions, this is always "skill_version".
59 |
# File 'lib/anthropic/models/beta/skills/version_list_response.rb', line 59 required :type, String |
#version ⇒ String
Version identifier for the skill.
Each version is identified by a Unix epoch timestamp (e.g., "1759178010641129").
67 |
# File 'lib/anthropic/models/beta/skills/version_list_response.rb', line 67 required :version, String |