Package com.stripe.param.issuing
Class CardCreateParams.SpendingControls.Builder
java.lang.Object
com.stripe.param.issuing.CardCreateParams.SpendingControls.Builder
- Enclosing class:
- CardCreateParams.SpendingControls
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionAdd all elements to `allowedCategories` list.addAllAllowedMerchantCountry
(List<String> elements) Add all elements to `allowedMerchantCountries` list.Add all elements to `blockedCategories` list.addAllBlockedMerchantCountry
(List<String> elements) Add all elements to `blockedMerchantCountries` list.Add an element to `allowedCategories` list.addAllowedMerchantCountry
(String element) Add an element to `allowedMerchantCountries` list.Add all elements to `spendingLimits` list.Add an element to `blockedCategories` list.addBlockedMerchantCountry
(String element) Add an element to `blockedMerchantCountries` list.Add an element to `spendingLimits` list.build()
Finalize and obtain parameter instance from this builder.putAllExtraParam
(Map<String, Object> map) Add all map key/value pairs to `extraParams` map.putExtraParam
(String key, Object value) Add a key/value pair to `extraParams` map.
-
Constructor Details
-
Builder
public Builder()
-
-
Method Details
-
build
Finalize and obtain parameter instance from this builder. -
addAllowedCategory
public CardCreateParams.SpendingControls.Builder addAllowedCategory(CardCreateParams.SpendingControls.AllowedCategory element) Add an element to `allowedCategories` list. A list is initialized for the first `add/addAll` call, and subsequent calls adds additional elements to the original list. SeeCardCreateParams.SpendingControls.allowedCategories
for the field documentation. -
addAllAllowedCategory
public CardCreateParams.SpendingControls.Builder addAllAllowedCategory(List<CardCreateParams.SpendingControls.AllowedCategory> elements) Add all elements to `allowedCategories` list. A list is initialized for the first `add/addAll` call, and subsequent calls adds additional elements to the original list. SeeCardCreateParams.SpendingControls.allowedCategories
for the field documentation. -
addAllowedMerchantCountry
Add an element to `allowedMerchantCountries` list. A list is initialized for the first `add/addAll` call, and subsequent calls adds additional elements to the original list. SeeCardCreateParams.SpendingControls.allowedMerchantCountries
for the field documentation. -
addAllAllowedMerchantCountry
public CardCreateParams.SpendingControls.Builder addAllAllowedMerchantCountry(List<String> elements) Add all elements to `allowedMerchantCountries` list. A list is initialized for the first `add/addAll` call, and subsequent calls adds additional elements to the original list. SeeCardCreateParams.SpendingControls.allowedMerchantCountries
for the field documentation. -
addBlockedCategory
public CardCreateParams.SpendingControls.Builder addBlockedCategory(CardCreateParams.SpendingControls.BlockedCategory element) Add an element to `blockedCategories` list. A list is initialized for the first `add/addAll` call, and subsequent calls adds additional elements to the original list. SeeCardCreateParams.SpendingControls.blockedCategories
for the field documentation. -
addAllBlockedCategory
public CardCreateParams.SpendingControls.Builder addAllBlockedCategory(List<CardCreateParams.SpendingControls.BlockedCategory> elements) Add all elements to `blockedCategories` list. A list is initialized for the first `add/addAll` call, and subsequent calls adds additional elements to the original list. SeeCardCreateParams.SpendingControls.blockedCategories
for the field documentation. -
addBlockedMerchantCountry
Add an element to `blockedMerchantCountries` list. A list is initialized for the first `add/addAll` call, and subsequent calls adds additional elements to the original list. SeeCardCreateParams.SpendingControls.blockedMerchantCountries
for the field documentation. -
addAllBlockedMerchantCountry
public CardCreateParams.SpendingControls.Builder addAllBlockedMerchantCountry(List<String> elements) Add all elements to `blockedMerchantCountries` list. A list is initialized for the first `add/addAll` call, and subsequent calls adds additional elements to the original list. SeeCardCreateParams.SpendingControls.blockedMerchantCountries
for the field documentation. -
putExtraParam
Add a key/value pair to `extraParams` map. A map is initialized for the first `put/putAll` call, and subsequent calls add additional key/value pairs to the original map. SeeCardCreateParams.SpendingControls.extraParams
for the field documentation. -
putAllExtraParam
Add all map key/value pairs to `extraParams` map. A map is initialized for the first `put/putAll` call, and subsequent calls add additional key/value pairs to the original map. SeeCardCreateParams.SpendingControls.extraParams
for the field documentation. -
addSpendingLimit
public CardCreateParams.SpendingControls.Builder addSpendingLimit(CardCreateParams.SpendingControls.SpendingLimit element) Add an element to `spendingLimits` list. A list is initialized for the first `add/addAll` call, and subsequent calls adds additional elements to the original list. SeeCardCreateParams.SpendingControls.spendingLimits
for the field documentation. -
addAllSpendingLimit
public CardCreateParams.SpendingControls.Builder addAllSpendingLimit(List<CardCreateParams.SpendingControls.SpendingLimit> elements) Add all elements to `spendingLimits` list. A list is initialized for the first `add/addAll` call, and subsequent calls adds additional elements to the original list. SeeCardCreateParams.SpendingControls.spendingLimits
for the field documentation.
-