/** * Cloud API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { AddressDto } from './address-dto'; import { InnerTranslationDto } from './inner-translation-dto'; import { InvoicePositionDto } from './invoice-position-dto'; import { InvoicePositionHeaderDto } from './invoice-position-header-dto'; import { ModelMetaObjectDto } from './model-meta-object-dto'; /** * * @export * @interface InvoiceDto */ export interface InvoiceDto { /** * Describes the date of the last update * @type {number} * @memberof InvoiceDto */ lastUpdatedAt?: number; /** * Describe the date when the entity was deleted * @type {number} * @memberof InvoiceDto */ deletedAt?: number; /** * * @type {string} * @memberof InvoiceDto */ id?: string; /** * * @type {number} * @memberof InvoiceDto */ createdAt?: number; /** * * @type {ModelMetaObjectDto} * @memberof InvoiceDto */ _meta?: ModelMetaObjectDto; /** * * @type {Array} * @memberof InvoiceDto */ recipient?: Array; /** * * @type {AddressDto} * @memberof InvoiceDto */ address?: AddressDto; /** * * @type {string} * @memberof InvoiceDto */ counterId?: string; /** * Falls leer, dann wird automatisch der Nummernkreis beim Abschließen der Rechnung verwendet * @type {string} * @memberof InvoiceDto */ number?: string; /** * Solange die Rechnung ein Entwurf ist, kann sie jederzeit bearbeitet werden. * @type {boolean} * @memberof InvoiceDto */ isDraft?: boolean; /** * Falls leer, dann wird das Rechnungsdatum automatisch beim Abschließen der Rechnung gesetzt * @type {string} * @memberof InvoiceDto */ dateOfInvoice?: string; /** * * @type {Array} * @memberof InvoiceDto */ positionHeaders?: Array; /** * * @type {Array} * @memberof InvoiceDto */ positions?: Array; /** * * @type {number} * @memberof InvoiceDto */ totalNetto?: number; /** * Diese Variablen können beispielsweise in der Rechnungsvorlage verwendet werden. Bei Rechnungserzeugung (beispielsweise als PDF) werden diese dann entsprechend eingesetzt. * @type {any} * @memberof InvoiceDto */ customContext?: any; }