1
0
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:
Stephon Brown
2026-01-27 13:21:50 -05:00
parent 95216ff157
commit 7df41352f6

View File

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