Class UserProfileCreateParams.Body.Builder
-
- All Implemented Interfaces:
public final class UserProfileCreateParams.Body.BuilderA builder for Body.
-
-
Method Summary
-
-
Method Detail
-
externalId
final UserProfileCreateParams.Body.Builder externalId(String externalId)
Platform's own identifier for this user. Not enforced unique. Maximum 255 characters.
-
externalId
final UserProfileCreateParams.Body.Builder externalId(Optional<String> externalId)
Alias for calling Builder.externalId with
externalId.orElse(null).
-
externalId
final UserProfileCreateParams.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 UserProfileCreateParams.Body.Builder metadata(UserProfileCreateParams.Metadata metadata)
Free-form key-value data to attach to this user profile. Maximum 16 keys, with keys up to 64 characters and values up to 512 characters. Values must be non-empty strings.
-
metadata
final UserProfileCreateParams.Body.Builder metadata(JsonField<UserProfileCreateParams.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 UserProfileCreateParams.Body.Builder name(String name)
Display name of the entity this profile represents. Required when relationship is
resold(the resold-to company's name); optional otherwise. Maximum 255 characters.
-
name
final UserProfileCreateParams.Body.Builder name(Optional<String> name)
Alias for calling Builder.name with
name.orElse(null).
-
name
final UserProfileCreateParams.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 UserProfileCreateParams.Body.Builder relationship(UserProfileCreateParams.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 UserProfileCreateParams.Body.Builder relationship(JsonField<UserProfileCreateParams.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 UserProfileCreateParams.Body.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final UserProfileCreateParams.Body.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final UserProfileCreateParams.Body.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final UserProfileCreateParams.Body.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final UserProfileCreateParams.Body.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final UserProfileCreateParams.Body build()
Returns an immutable instance of Body.
Further updates to this Builder will not mutate the returned instance.
-
-
-
-