Class VersionRetrieveResponse
-
- All Implemented Interfaces:
public final class VersionRetrieveResponse
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final classVersionRetrieveResponse.BuilderA builder for VersionRetrieveResponse.
-
Method Summary
Modifier and Type Method Description final Stringid()Unique identifier for the skill version. final StringcreatedAt()ISO 8601 timestamp of when the skill version was created. final Stringdescription()Description of the skill version. final Stringdirectory()Directory name of the skill version. final Stringname()Human-readable name of the skill version. final StringskillId()Identifier for the skill that this version belongs to. final Stringtype()Object type. final Stringversion()Version identifier for the skill. final JsonField<String>_id()Returns the raw JSON value of id. final JsonField<String>_createdAt()Returns the raw JSON value of createdAt. final JsonField<String>_description()Returns the raw JSON value of description. final JsonField<String>_directory()Returns the raw JSON value of directory. final JsonField<String>_name()Returns the raw JSON value of name. final JsonField<String>_skillId()Returns the raw JSON value of skillId. final JsonField<String>_type()Returns the raw JSON value of type. final JsonField<String>_version()Returns the raw JSON value of version. final Map<String, JsonValue>_additionalProperties()final VersionRetrieveResponse.BuildertoBuilder()final VersionRetrieveResponsevalidate()final BooleanisValid()Booleanequals(Object other)IntegerhashCode()StringtoString()final static VersionRetrieveResponse.Builderbuilder()Returns a mutable builder for constructing an instance of VersionRetrieveResponse. -
-
Method Detail
-
id
final String id()
Unique identifier for the skill version.
The format and length of IDs may change over time.
-
description
final String description()
Description of the skill version.
This is extracted from the SKILL.md file in the skill upload.
-
directory
final String directory()
Directory name of the skill version.
This is the top-level directory name that was extracted from the uploaded files.
-
name
final String name()
Human-readable name of the skill version.
This is extracted from the SKILL.md file in the skill upload.
-
version
final String version()
Version identifier for the skill.
Each version is identified by a Unix epoch timestamp (e.g., "1759178010641129").
-
_id
final JsonField<String> _id()
Returns the raw JSON value of id.
Unlike id, this method doesn't throw if the JSON field has an unexpected type.
-
_createdAt
final JsonField<String> _createdAt()
Returns the raw JSON value of createdAt.
Unlike createdAt, this method doesn't throw if the JSON field has an unexpected type.
-
_description
final JsonField<String> _description()
Returns the raw JSON value of description.
Unlike description, this method doesn't throw if the JSON field has an unexpected type.
-
_directory
final JsonField<String> _directory()
Returns the raw JSON value of directory.
Unlike directory, this method doesn't throw if the JSON field has an unexpected type.
-
_name
final JsonField<String> _name()
Returns the raw JSON value of name.
Unlike name, this method doesn't throw if the JSON field has an unexpected type.
-
_skillId
final JsonField<String> _skillId()
Returns the raw JSON value of skillId.
Unlike skillId, this method doesn't throw if the JSON field has an unexpected type.
-
_type
final JsonField<String> _type()
Returns the raw JSON value of type.
Unlike type, this method doesn't throw if the JSON field has an unexpected type.
-
_version
final JsonField<String> _version()
Returns the raw JSON value of version.
Unlike version, this method doesn't throw if the JSON field has an unexpected type.
-
_additionalProperties
final Map<String, JsonValue> _additionalProperties()
-
toBuilder
final VersionRetrieveResponse.Builder toBuilder()
-
validate
final VersionRetrieveResponse validate()
-
builder
final static VersionRetrieveResponse.Builder builder()
Returns a mutable builder for constructing an instance of VersionRetrieveResponse.
The following fields are required:
.id() .createdAt() .description() .directory() .name() .skillId() .type() .version()
-
-
-
-