juapp-freelancer-service-client
Version:
freelancer service client
24 lines (18 loc) • 367 B
text/typescript
/* 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',
}
}