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