Class ProjectTag
-
- All Implemented Interfaces:
public final class ProjectTagA project tag is a user-configured tag for tracking and filtering your experiments, logs, and other data
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final classProjectTag.BuilderA builder for ProjectTag.
-
Method Summary
Modifier and Type Method Description final Stringid()Unique identifier for the project tag final Stringname()Name of the project tag final StringprojectId()Unique identifier for the project that the project tag belongs under final StringuserId()final Optional<String>color()Color of the tag for the UI final Optional<OffsetDateTime>created()Date of project tag creation final Optional<String>description()Textual description of the project tag final JsonField<String>_id()Returns the raw JSON value of id. final JsonField<String>_name()Returns the raw JSON value of name. final JsonField<String>_projectId()Returns the raw JSON value of projectId. final JsonField<String>_userId()Returns the raw JSON value of userId. final JsonField<String>_color()Returns the raw JSON value of color. final JsonField<OffsetDateTime>_created()Returns the raw JSON value of created. final JsonField<String>_description()Returns the raw JSON value of description. final Map<String, JsonValue>_additionalProperties()final ProjectTag.BuildertoBuilder()final ProjectTagvalidate()final BooleanisValid()Booleanequals(Object other)IntegerhashCode()StringtoString()final static ProjectTag.Builderbuilder()Returns a mutable builder for constructing an instance of ProjectTag. -
-
Method Detail
-
projectId
final String projectId()
Unique identifier for the project that the project tag belongs under
-
created
final Optional<OffsetDateTime> created()
Date of project tag creation
-
description
final Optional<String> description()
Textual description of the project tag
-
_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.
-
_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.
-
_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.
-
_userId
final JsonField<String> _userId()
Returns the raw JSON value of userId.
Unlike userId, this method doesn't throw if the JSON field has an unexpected type.
-
_color
final JsonField<String> _color()
Returns the raw JSON value of color.
Unlike color, this method doesn't throw if the JSON field has an unexpected type.
-
_created
final JsonField<OffsetDateTime> _created()
Returns the raw JSON value of created.
Unlike created, 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.
-
_additionalProperties
final Map<String, JsonValue> _additionalProperties()
-
toBuilder
final ProjectTag.Builder toBuilder()
-
validate
final ProjectTag validate()
-
builder
final static ProjectTag.Builder builder()
Returns a mutable builder for constructing an instance of ProjectTag.
The following fields are required:
.id() .name() .projectId() .userId()
-
-
-
-