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

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

export type GetInvoicesResponse = {
    total?: number;
    items?: Array<Invoice>;
}
