Class AuthenticationRetrieveResponse.Merchant.Builder
-
- All Implemented Interfaces:
public final class AuthenticationRetrieveResponse.Merchant.BuilderA builder for Merchant.
-
-
Method Summary
-
-
Method Detail
-
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.
-
id
final AuthenticationRetrieveResponse.Merchant.Builder id(String id)
Merchant identifier as assigned by the acquirer. Maps to EMV 3DS field
acquirerMerchantId. May not be present for non-payment authentications.
-
id
final AuthenticationRetrieveResponse.Merchant.Builder id(Optional<String> id)
Alias for calling Builder.id with
id.orElse(null).
-
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. Permitted values: ISO 3166-1 alpha-3 country code (e.g., USA). May not be present for non-payment authentications.
-
country
final AuthenticationRetrieveResponse.Merchant.Builder country(Optional<String> country)
Alias for calling Builder.country with
country.orElse(null).
-
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. May not be present for non-payment authentications.
-
mcc
final AuthenticationRetrieveResponse.Merchant.Builder mcc(Optional<String> mcc)
Alias for calling Builder.mcc with
mcc.orElse(null).
-
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. May not be present for non-payment authentications.
-
name
final AuthenticationRetrieveResponse.Merchant.Builder name(Optional<String> name)
Alias for calling Builder.name with
name.orElse(null).
-
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.
-
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:
.riskIndicator()
-
-
-
-