GooglePayConfiguration

@JsonClass(generateAdapter = true)
data class GooglePayConfiguration(val gateway: String, @Json(name = "gateway_merchant_id") val gatewayMerchantId: String, @Json(name = "allowed_auth_methods") val allowedAuthMethods: Set<String>, @Json(name = "allowed_card_networks") val allowedCardNetworks: Set<String>, @Json(name = "allow_prepaid_cards") val allowPrepaidCards: Boolean, @Json(name = "allow_credit_cards") val allowCreditCards: Boolean)

Google Pay configuration. See CardParameters.

Parameters

allowedAuthMethods

Allowed card authentication methods.

allowedCardNetworks

Allowed card networks.

allowPrepaidCards

Set to false if you don't support prepaid cards.

allowCreditCards

Set to false if you don't support credit cards. Required for UK Gambling merchants.

Constructors

Link copied to clipboard
constructor(gateway: String, @Json(name = "gateway_merchant_id") gatewayMerchantId: String, @Json(name = "allowed_auth_methods") allowedAuthMethods: Set<String>, @Json(name = "allowed_card_networks") allowedCardNetworks: Set<String>, @Json(name = "allow_prepaid_cards") allowPrepaidCards: Boolean, @Json(name = "allow_credit_cards") allowCreditCards: Boolean)

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard