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

Commit

Permalink
fix typo on billing response
Browse files Browse the repository at this point in the history
  • Loading branch information
kspearrin committed Jun 29, 2018
1 parent 3726d9e commit ef89769
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/models/response/billingResponse.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,13 +72,13 @@ export class BillingSubscriptionItemResponse {
name: string;
amount: number;
quantity: number;
internal: string;
interval: string;

constructor(response: any) {
this.name = response.Name;
this.amount = response.Amount;
this.quantity = response.Quantity;
this.internal = response.Internal;
this.interval = response.Interval;
}
}

Expand Down

0 comments on commit ef89769

Please sign in to comment.