createPaymentIntentInput
Autogenerated input type of createPaymentIntent
Fields
clientMutationId
· String
· DO NOT USE deprecated
DO NOT USEamount_to_pay
· String
· The amount to charge in decimal format. e.g 10.99 legal_name
· String
· Optional. Defaults to first_name if left blank. payment_method_types
· [String]
· An array of possible payment method Required. Only current option is 'klarna' phone_number
· String
· Optional recipient_id
· ID
· The ID of the provider who will receive the payment. stripe_idempotency_key
· String
· Optional, but recommended. Used to prevent duplicate PaymentIntents from being created. Used By
Definition
"""Autogenerated input type of createPaymentIntent"""input createPaymentIntentInput { """ DO NOT USE """ clientMutationId: String @deprecated(reason: "DO NOT USE")
""" The amount to charge in decimal format. e.g 10.99 """ amount_to_pay: String coupon_code: String
""" The currency the payment will be made in. e.g 'usd' """ currency: String email: String first_name: String last_name: String
""" Optional. Defaults to first_name if left blank. """ legal_name: String offering_id: ID
""" An array of possible payment method Required. Only current option is 'klarna' """ payment_method_types: [String]
""" Optional """ phone_number: String
""" The ID of the provider who will receive the payment. """ recipient_id: ID
""" Optional, but recommended. Used to prevent duplicate PaymentIntents from being created. """ stripe_idempotency_key: String
""" Optional """ timezone: String}