Class Check.Builder
-
- All Implemented Interfaces:
public final class Check.BuilderA builder for Check.
-
-
Method Summary
-
-
Method Detail
-
id
final Check.Builder id(String id)
-
id
final Check.Builder id(JsonField<String> id)
Sets Builder.id to an arbitrary JSON value.
You should usually call Builder.id with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
status
final Check.Builder status(BaseCheck.Status status)
-
status
final Check.Builder status(JsonField<BaseCheck.Status> status)
Sets Builder.status to an arbitrary JSON value.
You should usually call Builder.status with a well-typed BaseCheck.Status value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
type
final Check.Builder type(BaseCheck.Type type)
-
type
final Check.Builder type(JsonField<BaseCheck.Type> type)
Sets Builder.type to an arbitrary JSON value.
You should usually call Builder.type with a well-typed BaseCheck.Type value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
updated
final Check.Builder updated(Long updated)
-
updated
final Check.Builder updated(JsonField<Long> updated)
Sets Builder.updated to an arbitrary JSON value.
You should usually call Builder.updated with a well-typed Long value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
additionalProperties
final Check.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final Check.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final Check.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final Check.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final Check.Builder removeAllAdditionalProperties(Set<String> keys)
-
-
-
-