bitwarden-estensione-browser/libs/common/src/models/api/billingSyncConfigApi.ts

14 lines
306 B
TypeScript

import { BaseResponse } from "../response/baseResponse";
export class BillingSyncConfigApi extends BaseResponse {
billingSyncKey: string;
constructor(data: any) {
super(data);
if (data == null) {
return;
}
this.billingSyncKey = this.getResponseProperty("BillingSyncKey");
}
}