OBJECT

StripeAccount

link GraphQL Schema definition

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