OBJECT

CompanyPlan

A company plan is a grouping of information about a company's service plan and billing periods for that plan.

link GraphQL Schema definition

1type CompanyPlan {
2
3# - Cost complexity: 1
4servicePlan: ServicePlan
5
6startDate: Timestamp
7
8expireDate: Timestamp
9
10# - Cost complexity: 1
11newServicePlan: ServicePlan
12
13# - Cost complexity: 1
14nextInvoice: Invoice @deprecated( reason: "In-app payment plan no longer supported." )
15
16# - Cost complexity: 1
17paymentSource: CreditCard @deprecated( reason: "In-app payment plan no longer supported." )
18
19}