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:
@@ -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");
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user