OBJECT
StripeAccount
link GraphQL Schema definition
1 type StripeAccount { 2 3 # Whether this account can be subscribed to 4 : Boolean 5 6 # Whether this account can setup Stripe Connect 7 : Boolean 8 9 # Whether this account can create subscriptions or not 10 : Boolean 11 12 # Uses Stripe API to generate a session link to customer portal of the specific 13 # creator 14 : String 15 16 # Checks whether the country of the connected account is approved 17 : Boolean 18 19 # Stripe Account id on record for the current user 20 : String 21 22 # Queries Stripe for the details of the authenticated users payment method 23 : StripePaymentMethod 24 25 # Queries Stripe for the status of the account. 26 : StripeAccountStatus 27 28 # Uses Stripe API to generate a new link 29 (: String): String 30 31 }