1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-09-18 02:41:15 +02:00

fix typo on billing response

This commit is contained in:
Kyle Spearrin 2018-06-29 16:55:04 -04:00
parent 3726d9e6d8
commit ef897695e9

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