mirror of
https://github.com/bitwarden/browser.git
synced 2025-02-17 01:31:25 +01:00
fix typo on billing response
This commit is contained in:
parent
3726d9e6d8
commit
ef897695e9
@ -72,13 +72,13 @@ export class BillingSubscriptionItemResponse {
|
|||||||
name: string;
|
name: string;
|
||||||
amount: number;
|
amount: number;
|
||||||
quantity: number;
|
quantity: number;
|
||||||
internal: string;
|
interval: string;
|
||||||
|
|
||||||
constructor(response: any) {
|
constructor(response: any) {
|
||||||
this.name = response.Name;
|
this.name = response.Name;
|
||||||
this.amount = response.Amount;
|
this.amount = response.Amount;
|
||||||
this.quantity = response.Quantity;
|
this.quantity = response.Quantity;
|
||||||
this.internal = response.Internal;
|
this.interval = response.Interval;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user