OBJECT

ServicePlan

A service plan represents a level of functionality and service associated with a CodeSignal product.

link GraphQL Schema definition

1type ServicePlan {
2
3key: ID
4
5product: Product
6
7title: String
8
9type: PlanType
10
11billingPeriod: PlanBillingPeriod
12
13price: Int
14
15status: String
16
17features: CompanyFeatures
18
19stripePlanId: String @deprecated( reason: "Stripe payment is no longer supported." )
20
21}