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; };