1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-11-27 12:36:14 +01:00

usingInAppPurchase added to model

This commit is contained in:
Kyle Spearrin 2019-09-19 16:30:29 -04:00
parent 575a28e25f
commit 929dd8415d

View File

@ -8,6 +8,7 @@ export class SubscriptionResponse extends BaseResponse {
upcomingInvoice: BillingSubscriptionUpcomingInvoiceResponse;
license: any;
expiration: string;
usingInAppPurchase: boolean;
constructor(response: any) {
super(response);
@ -16,6 +17,7 @@ export class SubscriptionResponse extends BaseResponse {
this.maxStorageGb = this.getResponseProperty('MaxStorageGb');
this.license = this.getResponseProperty('License');
this.expiration = this.getResponseProperty('Expiration');
this.usingInAppPurchase = this.getResponseProperty('UpcomingInvoice');
const subscription = this.getResponseProperty('Subscription');
const upcomingInvoice = this.getResponseProperty('UpcomingInvoice');
this.subscription = subscription == null ? null : new BillingSubscriptionResponse(subscription);