fix typo on billing response

This commit is contained in:
Kyle Spearrin 2018-06-29 16:55:04 -04:00
parent 3726d9e6d8
commit ef897695e9
1 changed files with 2 additions and 2 deletions

View File

@ -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;
}
}