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

export type Invoice = {
    id?: string;
    timesheet?: string;
    project?: string;
    number?: string;
    status?: Invoice.status;
    createdAt?: string;
    updatedAt?: string;
}

export namespace Invoice {

    export enum status {
        SENT = 'SENT',
        PAID = 'PAID',
    }


}
