1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-14 07:13:32 +00:00

[AC-1753] Automatically assign provider's pricing to new organizations (#7228)

* changes for the msp task

* fix an issues

* resolve pr comment
This commit is contained in:
cyprain-okeke
2023-12-20 22:55:30 +01:00
committed by GitHub
parent c1d856430a
commit de04bc4410
2 changed files with 36 additions and 5 deletions

View File

@@ -5,6 +5,7 @@ export class ProviderResponse extends BaseResponse {
name: string;
businessName: string;
billingEmail: string;
creationDate: Date;
constructor(response: any) {
super(response);
@@ -12,5 +13,6 @@ export class ProviderResponse extends BaseResponse {
this.name = this.getResponseProperty("Name");
this.businessName = this.getResponseProperty("BusinessName");
this.billingEmail = this.getResponseProperty("BillingEmail");
this.creationDate = this.getResponseProperty("CreationDate");
}
}