Skip to content
This repository has been archived by the owner on Jun 17, 2022. It is now read-only.

Commit

Permalink
fix UsingInAppPurchase mapping
Browse files Browse the repository at this point in the history
  • Loading branch information
kspearrin committed Sep 24, 2019
1 parent 6b82cd0 commit 971e193
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/models/response/subscriptionResponse.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +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');
this.usingInAppPurchase = this.getResponseProperty('UsingInAppPurchase');
const subscription = this.getResponseProperty('Subscription');
const upcomingInvoice = this.getResponseProperty('UpcomingInvoice');
this.subscription = subscription == null ? null : new BillingSubscriptionResponse(subscription);
Expand Down

0 comments on commit 971e193

Please sign in to comment.