1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-14 07:13:32 +00:00

Add description to billing history, update invoice table and report name (#9777)

This commit is contained in:
Alex Morask
2024-06-26 09:30:37 -04:00
committed by GitHub
parent 679c25b082
commit dbc6f1c840
6 changed files with 19 additions and 33 deletions

View File

@@ -20,7 +20,6 @@ export class InvoiceResponse extends BaseResponse {
status: string;
dueDate: string;
url: string;
pdfUrl: string;
constructor(response: any) {
super(response);
@@ -31,6 +30,5 @@ export class InvoiceResponse extends BaseResponse {
this.status = this.getResponseProperty("Status");
this.dueDate = this.getResponseProperty("DueDate");
this.url = this.getResponseProperty("Url");
this.pdfUrl = this.getResponseProperty("PdfUrl");
}
}