/** * Native workflow status keys from blameCases (`CaseStatus`) or claimCases (`ClaimCaseStatus`), * plus `all` = total matching documents for the tenant. */ export class BlameCaseStatusCountReportDtoRs { [key: string]: number; constructor(report: Record) { Object.assign(this, report); } } export class ClaimCaseStatusCountReportDtoRs { [key: string]: number; constructor(report: Record) { Object.assign(this, report); } } export class CompanyAllRequestsCountReportDtoRs { blame: Record; claim: Record; constructor(blame: Record, claim: Record) { this.blame = blame; this.claim = claim; } }