Class InviteCreateParams.Project.Builder
-
- All Implemented Interfaces:
public final class InviteCreateParams.Project.BuilderA builder for Project.
-
-
Method Summary
-
-
Method Detail
-
id
final InviteCreateParams.Project.Builder id(String id)
Project's public ID
-
id
final InviteCreateParams.Project.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.
-
role
final InviteCreateParams.Project.Builder role(InviteCreateParams.Project.Role role)
Project membership role
-
role
final InviteCreateParams.Project.Builder role(JsonField<InviteCreateParams.Project.Role> role)
Sets Builder.role to an arbitrary JSON value.
You should usually call Builder.role with a well-typed Role value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
additionalProperties
final InviteCreateParams.Project.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final InviteCreateParams.Project.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final InviteCreateParams.Project.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final InviteCreateParams.Project.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final InviteCreateParams.Project.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final InviteCreateParams.Project build()
Returns an immutable instance of Project.
Further updates to this Builder will not mutate the returned instance.
The following fields are required:
.id() .role()
-
-
-
-