mirror of
https://github.com/bitwarden/browser
synced 2026-01-29 07:43:28 +00:00
fix(billing): add additional prorated amount of months
This commit is contained in:
@@ -21,6 +21,7 @@ export class ProrationPreviewResponse extends BaseResponse {
|
||||
tax: number;
|
||||
total: number;
|
||||
credit: number;
|
||||
proratedAmountOfMonths: number;
|
||||
|
||||
constructor(response: any) {
|
||||
super(response);
|
||||
@@ -28,6 +29,7 @@ export class ProrationPreviewResponse extends BaseResponse {
|
||||
this.tax = this.getResponseProperty("Tax");
|
||||
this.total = this.getResponseProperty("Total");
|
||||
this.credit = this.getResponseProperty("Credit");
|
||||
this.proratedAmountOfMonths = this.getResponseProperty("ProratedAmountOfMonths");
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user