Class UserProfileUpdateParams.Body.Builder
-
- All Implemented Interfaces:
public final class UserProfileUpdateParams.Body.BuilderA builder for Body.
-
-
Method Summary
-
-
Method Detail
-
externalId
final UserProfileUpdateParams.Body.Builder externalId(String externalId)
If present, replaces the stored external_id. Omit to leave unchanged. Maximum 255 characters.
-
externalId
final UserProfileUpdateParams.Body.Builder externalId(Optional<String> externalId)
Alias for calling Builder.externalId with
externalId.orElse(null).
-
externalId
final UserProfileUpdateParams.Body.Builder externalId(JsonField<String> externalId)
Sets Builder.externalId to an arbitrary JSON value.
You should usually call Builder.externalId with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
metadata
final UserProfileUpdateParams.Body.Builder metadata(UserProfileUpdateParams.Metadata metadata)
Key-value pairs to merge into the stored metadata. Keys provided overwrite existing values. To remove a key, set its value to an empty string. Keys not provided are left unchanged. Maximum 16 keys, with keys up to 64 characters and values up to 512 characters.
-
metadata
final UserProfileUpdateParams.Body.Builder metadata(JsonField<UserProfileUpdateParams.Metadata> metadata)
Sets Builder.metadata to an arbitrary JSON value.
You should usually call Builder.metadata with a well-typed Metadata value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
name
final UserProfileUpdateParams.Body.Builder name(String name)
If present, replaces the stored name. Omit to leave unchanged. Maximum 255 characters.
-
name
final UserProfileUpdateParams.Body.Builder name(Optional<String> name)
Alias for calling Builder.name with
name.orElse(null).
-
name
final UserProfileUpdateParams.Body.Builder name(JsonField<String> name)
Sets Builder.name to an arbitrary JSON value.
You should usually call Builder.name with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
relationship
final UserProfileUpdateParams.Body.Builder relationship(UserProfileUpdateParams.Relationship relationship)
How the entity behind a user profile relates to the platform that owns the API key.
external: an individual end-user of the platform.resold: a company the platform resells Claude access to.internal: the platform's own usage.
-
relationship
final UserProfileUpdateParams.Body.Builder relationship(Optional<UserProfileUpdateParams.Relationship> relationship)
Alias for calling Builder.relationship with
relationship.orElse(null).
-
relationship
final UserProfileUpdateParams.Body.Builder relationship(JsonField<UserProfileUpdateParams.Relationship> relationship)
Sets Builder.relationship to an arbitrary JSON value.
You should usually call Builder.relationship with a well-typed Relationship value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
additionalProperties
final UserProfileUpdateParams.Body.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final UserProfileUpdateParams.Body.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final UserProfileUpdateParams.Body.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final UserProfileUpdateParams.Body.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final UserProfileUpdateParams.Body.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final UserProfileUpdateParams.Body build()
Returns an immutable instance of Body.
Further updates to this Builder will not mutate the returned instance.
-
-
-
-