/* tslint:disable */ /* eslint-disable */ /** * Emil PublicAPI * The Emil Public API description * * The version of the OpenAPI document: 1.0 * Contact: kontakt@emil.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface InvoiceStatusClass */ export interface InvoiceStatusClass { /** * Internal unique identifier for the object. You should not have to use this, use code instead. * @type {number} * @memberof InvoiceStatusClass */ 'id': number; /** * Unique identifier referencing the invoice. * @type {number} * @memberof InvoiceStatusClass */ 'invoiceId': number; /** * Invoice type * @type {string} * @memberof InvoiceStatusClass */ 'status': string; /** * Time at which the object was created. * @type {string} * @memberof InvoiceStatusClass */ 'createdAt': string; }