From 20264d516c34c0e7993cfd1493fd340af77be648 Mon Sep 17 00:00:00 2001 From: cyprain-okeke <108260115+cyprain-okeke@users.noreply.github.com> Date: Wed, 5 Jul 2023 17:38:02 +0100 Subject: [PATCH] add the additional properties (#5743) --- libs/common/src/billing/models/response/plan.response.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/libs/common/src/billing/models/response/plan.response.ts b/libs/common/src/billing/models/response/plan.response.ts index c3558a1b534..bb09a9b143c 100644 --- a/libs/common/src/billing/models/response/plan.response.ts +++ b/libs/common/src/billing/models/response/plan.response.ts @@ -55,6 +55,8 @@ export class PlanResponse extends BaseResponse { maxServiceAccount: number; hasAdditionalServiceAccountOption: boolean; maxProjects: number; + maxAdditionalServiceAccounts: number; + stripeServiceAccountPlanId: string; constructor(response: any) { super(response); @@ -109,5 +111,7 @@ export class PlanResponse extends BaseResponse { "HasAdditionalServiceAccountOption" ); this.maxProjects = this.getResponseProperty("MaxProjects"); + this.maxAdditionalServiceAccounts = this.getResponseProperty("MaxAdditionalServiceAccounts"); + this.stripeServiceAccountPlanId = this.getResponseProperty("StripeServiceAccountPlanId"); } }