Class ProjectGroup.Builder
-
- All Implemented Interfaces:
public final class ProjectGroup.BuilderA builder for ProjectGroup.
-
-
Method Summary
-
-
Method Detail
-
createdAt
final ProjectGroup.Builder createdAt(Long createdAt)
Unix timestamp (in seconds) when the group was granted project access.
-
createdAt
final ProjectGroup.Builder createdAt(JsonField<Long> createdAt)
Sets Builder.createdAt to an arbitrary JSON value.
You should usually call Builder.createdAt with a well-typed Long value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
groupId
final ProjectGroup.Builder groupId(String groupId)
Identifier of the group that has access to the project.
-
groupId
final ProjectGroup.Builder groupId(JsonField<String> groupId)
Sets Builder.groupId to an arbitrary JSON value.
You should usually call Builder.groupId with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
groupName
final ProjectGroup.Builder groupName(String groupName)
Display name of the group.
-
groupName
final ProjectGroup.Builder groupName(JsonField<String> groupName)
Sets Builder.groupName to an arbitrary JSON value.
You should usually call Builder.groupName with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
groupType
final ProjectGroup.Builder groupType(ProjectGroup.GroupType groupType)
The type of the group.
-
groupType
final ProjectGroup.Builder groupType(JsonField<ProjectGroup.GroupType> groupType)
Sets Builder.groupType to an arbitrary JSON value.
You should usually call Builder.groupType with a well-typed GroupType value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
object_
final ProjectGroup.Builder object_(JsonValue object_)
Sets the field to an arbitrary JSON value.
It is usually unnecessary to call this method because the field defaults to the following:
JsonValue.from("project.group")This method is primarily for setting the field to an undocumented or not yet supported value.
-
projectId
final ProjectGroup.Builder projectId(String projectId)
Identifier of the project.
-
projectId
final ProjectGroup.Builder projectId(JsonField<String> projectId)
Sets Builder.projectId to an arbitrary JSON value.
You should usually call Builder.projectId 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 ProjectGroup.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final ProjectGroup.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final ProjectGroup.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final ProjectGroup.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final ProjectGroup.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final ProjectGroup build()
Returns an immutable instance of ProjectGroup.
Further updates to this Builder will not mutate the returned instance.
The following fields are required:
.createdAt() .groupId() .groupName() .groupType() .projectId()
-
-
-
-