/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ import type { BillingPeriod } from './BillingPeriod'; import type { Breakdown } from './Breakdown'; import type { Entity } from './Entity'; import type { Summary } from './Summary'; /** * Complete invoice report response. */ export type InvoiceReportResponse = { entity: Entity; billing_period: BillingPeriod; summary: Summary; breakdown?: Breakdown; };