We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 327c1b8 + 59462bb commit b3980afCopy full SHA for b3980af
src/model/OrganizationSubscription.ts
@@ -32,7 +32,6 @@ export type CreateSubscriptionPayloadType = {
32
// @ts-expect-error solve the get and query function inheritance ts error
33
export default class OrganizationSubscription extends Subscription {
34
organization_id: string;
35
- support_tier: string;
36
37
constructor(subscription: APIObject, customUrl?: string) {
38
const { organizationId } = subscription;
@@ -49,7 +48,6 @@ export default class OrganizationSubscription extends Subscription {
49
48
this._creatableField.push("organizationId");
50
51
this.organization_id = organizationId;
52
- this.support_tier = "";
53
}
54
55
static async get(
0 commit comments