Class PermissionRetrieveResponse.Data
-
- All Implemented Interfaces:
public final class PermissionRetrieveResponse.Data
The
checkpoint.permission
object represents a permission for a fine-tuned model checkpoint.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final class
PermissionRetrieveResponse.Data.Builder
A builder for Data.
-
Method Summary
Modifier and Type Method Description final String
id()
The permission identifier, which can be referenced in the API endpoints. final Long
createdAt()
The Unix timestamp (in seconds) for when the permission was created. final JsonValue
_object_()
The object type, which is always "checkpoint.permission". final String
projectId()
The project identifier that the permission is for. final JsonField<String>
_id()
Returns the raw JSON value of id. final JsonField<Long>
_createdAt()
Returns the raw JSON value of createdAt. final JsonField<String>
_projectId()
Returns the raw JSON value of projectId. final Map<String, JsonValue>
_additionalProperties()
final PermissionRetrieveResponse.Data.Builder
toBuilder()
final PermissionRetrieveResponse.Data
validate()
final Boolean
isValid()
Boolean
equals(Object other)
Integer
hashCode()
String
toString()
final static PermissionRetrieveResponse.Data.Builder
builder()
Returns a mutable builder for constructing an instance of Data. -
-
Method Detail
-
createdAt
final Long createdAt()
The Unix timestamp (in seconds) for when the permission was created.
-
_object_
final JsonValue _object_()
The object type, which is always "checkpoint.permission".
Expected to always return the following:
JsonValue.from("checkpoint.permission")
However, this method can be useful for debugging and logging (e.g. if the server responded with an unexpected value).
-
_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<Long> _createdAt()
Returns the raw JSON value of createdAt.
Unlike createdAt, this method doesn't throw if the JSON field has an unexpected type.
-
_projectId
final JsonField<String> _projectId()
Returns the raw JSON value of projectId.
Unlike projectId, this method doesn't throw if the JSON field has an unexpected type.
-
_additionalProperties
final Map<String, JsonValue> _additionalProperties()
-
toBuilder
final PermissionRetrieveResponse.Data.Builder toBuilder()
-
validate
final PermissionRetrieveResponse.Data validate()
-
builder
final static PermissionRetrieveResponse.Data.Builder builder()
Returns a mutable builder for constructing an instance of Data.
The following fields are required:
.id() .createdAt() .projectId()
-
-
-
-