Package com.lithic.api.models
Class MerchantLockParameters.Builder
-
- All Implemented Interfaces:
public final class MerchantLockParameters.BuilderA builder for MerchantLockParameters.
-
-
Method Summary
-
-
Method Detail
-
merchants
final MerchantLockParameters.Builder merchants(List<MerchantLockParameters.Merchant> merchants)
A list of merchant locks defining specific merchants or groups of merchants (based on descriptors or IDs) that the lock applies to.
-
merchants
final MerchantLockParameters.Builder merchants(JsonField<List<MerchantLockParameters.Merchant>> merchants)
Sets Builder.merchants to an arbitrary JSON value.
You should usually call Builder.merchants with a well-typed
List<Merchant>value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
addMerchant
final MerchantLockParameters.Builder addMerchant(MerchantLockParameters.Merchant merchant)
-
additionalProperties
final MerchantLockParameters.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final MerchantLockParameters.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final MerchantLockParameters.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final MerchantLockParameters.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final MerchantLockParameters.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final MerchantLockParameters build()
Returns an immutable instance of MerchantLockParameters.
Further updates to this Builder will not mutate the returned instance.
The following fields are required:
.merchants()
-
-
-
-