Safe Haskell | None |
---|---|
Language | Haskell2010 |
Contains the types generated from the schema PaymentMethodCardWallet
Synopsis
- data PaymentMethodCardWallet = PaymentMethodCardWallet {
- paymentMethodCardWalletAmexExpressCheckout :: Maybe PaymentMethodCardWalletAmexExpressCheckout
- paymentMethodCardWalletApplePay :: Maybe PaymentMethodCardWalletApplePay
- paymentMethodCardWalletDynamicLast4 :: Maybe Text
- paymentMethodCardWalletGooglePay :: Maybe PaymentMethodCardWalletGooglePay
- paymentMethodCardWalletMasterpass :: Maybe PaymentMethodCardWalletMasterpass
- paymentMethodCardWalletSamsungPay :: Maybe PaymentMethodCardWalletSamsungPay
- paymentMethodCardWalletType :: PaymentMethodCardWalletType'
- paymentMethodCardWalletVisaCheckout :: Maybe PaymentMethodCardWalletVisaCheckout
- mkPaymentMethodCardWallet :: PaymentMethodCardWalletType' -> PaymentMethodCardWallet
- data PaymentMethodCardWalletType'
- = PaymentMethodCardWalletType'Other Value
- | PaymentMethodCardWalletType'Typed Text
- | PaymentMethodCardWalletType'EnumAmexExpressCheckout
- | PaymentMethodCardWalletType'EnumApplePay
- | PaymentMethodCardWalletType'EnumGooglePay
- | PaymentMethodCardWalletType'EnumMasterpass
- | PaymentMethodCardWalletType'EnumSamsungPay
- | PaymentMethodCardWalletType'EnumVisaCheckout
Documentation
data PaymentMethodCardWallet Source #
Defines the object schema located at components.schemas.payment_method_card_wallet
in the specification.
Instances
mkPaymentMethodCardWallet Source #
Create a new PaymentMethodCardWallet
with all required fields.
data PaymentMethodCardWalletType' Source #
Defines the enum schema located at components.schemas.payment_method_card_wallet.properties.type
in the specification.
The type of the card wallet, one of `amex_express_checkout`, `apple_pay`, `google_pay`, `masterpass`, `samsung_pay`, or `visa_checkout`. An additional hash is included on the Wallet subhash with a name matching this value. It contains additional information specific to the card wallet type.
PaymentMethodCardWalletType'Other Value | This case is used if the value encountered during decoding does not match any of the provided cases in the specification. |
PaymentMethodCardWalletType'Typed Text | This constructor can be used to send values to the server which are not present in the specification yet. |
PaymentMethodCardWalletType'EnumAmexExpressCheckout | Represents the JSON value |
PaymentMethodCardWalletType'EnumApplePay | Represents the JSON value |
PaymentMethodCardWalletType'EnumGooglePay | Represents the JSON value |
PaymentMethodCardWalletType'EnumMasterpass | Represents the JSON value |
PaymentMethodCardWalletType'EnumSamsungPay | Represents the JSON value |
PaymentMethodCardWalletType'EnumVisaCheckout | Represents the JSON value |