Package com.stripe.param.issuing
Class AuthorizationCreateParams.MerchantData.Builder
java.lang.Object
com.stripe.param.issuing.AuthorizationCreateParams.MerchantData.Builder
- Enclosing class:
- AuthorizationCreateParams.MerchantData
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionbuild()
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.A categorization of the seller's type of business.City where the seller is located.setCountry
(String country) Country where the seller is located.Name of the seller.setNetworkId
(String networkId) Identifier assigned to the seller by the card network.setPostalCode
(String postalCode) Postal code where the seller is located.State where the seller is located.setTerminalId
(String terminalId) An ID assigned by the seller to the location of the sale.URL provided by the merchant on a 3DS request.
-
Constructor Details
-
Builder
public Builder()
-
-
Method Details
-
build
Finalize and obtain parameter instance from this builder. -
setCategory
public AuthorizationCreateParams.MerchantData.Builder setCategory(AuthorizationCreateParams.MerchantData.Category category) A categorization of the seller's type of business. See our merchant categories guide for a list of possible values. -
setCity
City where the seller is located. -
setCountry
Country where the seller is located. -
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. SeeAuthorizationCreateParams.MerchantData.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. SeeAuthorizationCreateParams.MerchantData.extraParams
for the field documentation. -
setName
Name of the seller. -
setNetworkId
Identifier assigned to the seller by the card network. Different card networks may assign different network_id fields to the same merchant. -
setPostalCode
Postal code where the seller is located. -
setState
State where the seller is located. -
setTerminalId
An ID assigned by the seller to the location of the sale. -
setUrl
URL provided by the merchant on a 3DS request.
-