/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */

import type { ClientInvoice } from './ClientInvoice';

export type ClientInvoices = {
    total?: number;
    items?: Array<ClientInvoice>;
}
