Class TokenUpdateParams.Patch.Builder
-
- All Implemented Interfaces:
public final class TokenUpdateParams.Patch.BuilderA builder for Patch.
-
-
Method Summary
-
-
Method Detail
-
op
final TokenUpdateParams.Patch.Builder op(String op)
The operation to perform.
-
op
final TokenUpdateParams.Patch.Builder op(JsonField<String> op)
Sets Builder.op to an arbitrary JSON value.
You should usually call Builder.op with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
path
final TokenUpdateParams.Patch.Builder path(String path)
The JSON path specifying the part of the profile to operate on.
-
path
final TokenUpdateParams.Patch.Builder path(JsonField<String> path)
Sets Builder.path to an arbitrary JSON value.
You should usually call Builder.path with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
value
final TokenUpdateParams.Patch.Builder value(String value)
The value for the operation.
-
value
final TokenUpdateParams.Patch.Builder value(Optional<String> value)
Alias for calling Builder.value with
value.orElse(null).
-
value
final TokenUpdateParams.Patch.Builder value(JsonField<String> value)
Sets Builder.value to an arbitrary JSON value.
You should usually call Builder.value with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
additionalProperties
final TokenUpdateParams.Patch.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final TokenUpdateParams.Patch.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final TokenUpdateParams.Patch.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final TokenUpdateParams.Patch.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final TokenUpdateParams.Patch.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final TokenUpdateParams.Patch build()
Returns an immutable instance of Patch.
Further updates to this Builder will not mutate the returned instance.
The following fields are required:
.op() .path()
-
-
-
-