Class ParticipantList.Builder
-
- All Implemented Interfaces:
public final class ParticipantList.BuilderA builder for ParticipantList.
-
-
Method Summary
-
-
Method Detail
-
limit
final ParticipantList.Builder limit(Long limit)
-
limit
final ParticipantList.Builder limit(JsonField<Long> limit)
Sets Builder.limit to an arbitrary JSON value.
You should usually call Builder.limit with a well-typed Long value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
nextId
final ParticipantList.Builder nextId(String nextId)
-
nextId
final ParticipantList.Builder nextId(Optional<String> nextId)
Alias for calling Builder.nextId with
nextId.orElse(null).
-
nextId
final ParticipantList.Builder nextId(JsonField<String> nextId)
Sets Builder.nextId to an arbitrary JSON value.
You should usually call Builder.nextId with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
participants
final ParticipantList.Builder participants(List<Participant> participants)
-
participants
final ParticipantList.Builder participants(JsonField<List<Participant>> participants)
Sets Builder.participants to an arbitrary JSON value.
You should usually call Builder.participants with a well-typed
List<Participant>value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
addParticipant
final ParticipantList.Builder addParticipant(Participant participant)
Adds a single Participant to participants.
-
additionalProperties
final ParticipantList.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final ParticipantList.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final ParticipantList.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final ParticipantList.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final ParticipantList.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final ParticipantList build()
Returns an immutable instance of ParticipantList.
Further updates to this Builder will not mutate the returned instance.
The following fields are required:
.limit() .nextId() .participants()
-
-
-
-