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