Safe Haskell | None |
---|---|
Language | Haskell2010 |
Contains the types generated from the schema AlipayAccount
Synopsis
- data AlipayAccount = AlipayAccount {
- alipayAccountCreated :: Int
- alipayAccountCustomer :: Maybe AlipayAccountCustomer'Variants
- alipayAccountFingerprint :: Text
- alipayAccountId :: Text
- alipayAccountLivemode :: Bool
- alipayAccountMetadata :: Maybe Object
- alipayAccountPaymentAmount :: Maybe Int
- alipayAccountPaymentCurrency :: Maybe Text
- alipayAccountReusable :: Bool
- alipayAccountUsed :: Bool
- alipayAccountUsername :: Text
- mkAlipayAccount :: Int -> Text -> Text -> Bool -> Bool -> Bool -> Text -> AlipayAccount
- data AlipayAccountCustomer'Variants
Documentation
data AlipayAccount Source #
Defines the object schema located at components.schemas.alipay_account
in the specification.
AlipayAccount | |
|
Instances
Eq AlipayAccount Source # | |
Defined in StripeAPI.Types.AlipayAccount (==) :: AlipayAccount -> AlipayAccount -> Bool # (/=) :: AlipayAccount -> AlipayAccount -> Bool # | |
Show AlipayAccount Source # | |
Defined in StripeAPI.Types.AlipayAccount showsPrec :: Int -> AlipayAccount -> ShowS # show :: AlipayAccount -> String # showList :: [AlipayAccount] -> ShowS # | |
ToJSON AlipayAccount Source # | |
Defined in StripeAPI.Types.AlipayAccount toJSON :: AlipayAccount -> Value # toEncoding :: AlipayAccount -> Encoding # toJSONList :: [AlipayAccount] -> Value # toEncodingList :: [AlipayAccount] -> Encoding # | |
FromJSON AlipayAccount Source # | |
Defined in StripeAPI.Types.AlipayAccount parseJSON :: Value -> Parser AlipayAccount # parseJSONList :: Value -> Parser [AlipayAccount] # |
Create a new AlipayAccount
with all required fields.
data AlipayAccountCustomer'Variants Source #
Defines the oneOf schema located at components.schemas.alipay_account.properties.customer.anyOf
in the specification.
The ID of the customer associated with this Alipay Account.
AlipayAccountCustomer'Text Text | |
AlipayAccountCustomer'Customer Customer | |
AlipayAccountCustomer'DeletedCustomer DeletedCustomer |