Class AuthenticationRetrieveResponse.Merchant.Builder
-
- All Implemented Interfaces:
public final class AuthenticationRetrieveResponse.Merchant.BuilderA builder for Merchant.
-
-
Method Summary
-
-
Method Detail
-
id
final AuthenticationRetrieveResponse.Merchant.Builder id(String id)
Merchant identifier as assigned by the acquirer. Maps to EMV 3DS field acquirerMerchantId.
-
id
final AuthenticationRetrieveResponse.Merchant.Builder id(JsonField<String> id)
Sets Builder.id to an arbitrary JSON value.
You should usually call Builder.id with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
country
final AuthenticationRetrieveResponse.Merchant.Builder country(String country)
Country code of the merchant requesting 3DS authentication. Maps to EMV 3DS field merchantCountryCode.
-
country
final AuthenticationRetrieveResponse.Merchant.Builder country(JsonField<String> country)
Sets Builder.country to an arbitrary JSON value.
You should usually call Builder.country with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
mcc
final AuthenticationRetrieveResponse.Merchant.Builder mcc(String mcc)
Merchant category code assigned to the merchant that describes its business activity type. Maps to EMV 3DS field mcc.
-
mcc
final AuthenticationRetrieveResponse.Merchant.Builder mcc(JsonField<String> mcc)
Sets Builder.mcc to an arbitrary JSON value.
You should usually call Builder.mcc with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
name
final AuthenticationRetrieveResponse.Merchant.Builder name(String name)
Name of the merchant. Maps to EMV 3DS field merchantName.
-
name
final AuthenticationRetrieveResponse.Merchant.Builder name(JsonField<String> name)
Sets Builder.name to an arbitrary JSON value.
You should usually call Builder.name with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
riskIndicator
final AuthenticationRetrieveResponse.Merchant.Builder riskIndicator(AuthenticationRetrieveResponse.Merchant.RiskIndicator riskIndicator)
Object containing additional data indicating additional risk factors related to the e-commerce transaction.
-
riskIndicator
final AuthenticationRetrieveResponse.Merchant.Builder riskIndicator(JsonField<AuthenticationRetrieveResponse.Merchant.RiskIndicator> riskIndicator)
Sets Builder.riskIndicator to an arbitrary JSON value.
You should usually call Builder.riskIndicator with a well-typed RiskIndicator value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
additionalProperties
final AuthenticationRetrieveResponse.Merchant.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final AuthenticationRetrieveResponse.Merchant.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final AuthenticationRetrieveResponse.Merchant.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final AuthenticationRetrieveResponse.Merchant.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final AuthenticationRetrieveResponse.Merchant.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final AuthenticationRetrieveResponse.Merchant build()
Returns an immutable instance of Merchant.
Further updates to this Builder will not mutate the returned instance.
The following fields are required:
.id() .country() .mcc() .name() .riskIndicator()
-
-
-
-