/** * 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. */ import { InvoiceClass } from './invoice-class'; import { LeadAccountClass } from './lead-account-class'; import { LeadBankAccountClass } from './lead-bank-account-class'; import { LeadPolicyClass } from './lead-policy-class'; import { PartnerLinkClass } from './partner-link-class'; import { PaymentMethodResponseClass } from './payment-method-response-class'; import { PremiumOverrideDto } from './premium-override-dto'; import { UploadedDocumentDto } from './uploaded-document-dto'; /** * * @export * @interface LeadClass */ export interface LeadClass { /** * Internal unique identifier for the object. You should not have to use this, use code instead. * @type {number} * @memberof LeadClass */ 'id': number; /** * Unique identifier for the object. * @type {string} * @memberof LeadClass */ 'code': string; /** * Lead status * @type {string} * @memberof LeadClass */ 'status': string; /** * Lead account * @type {LeadAccountClass} * @memberof LeadClass */ 'account': LeadAccountClass; /** * Lead policy * @type {LeadPolicyClass} * @memberof LeadClass */ 'policy': LeadPolicyClass; /** * Lead bank account * @type {LeadBankAccountClass} * @memberof LeadClass */ 'bankAccount'?: LeadBankAccountClass; /** * Premium overrides * @type {Array} * @memberof LeadClass */ 'premiumOverrides'?: Array; /** * Codes for documents to be uploaded * @type {UploadedDocumentDto} * @memberof LeadClass */ 'uploadedDocument'?: UploadedDocumentDto; /** * Custom data. * @type {object} * @memberof LeadClass */ 'customData'?: object; /** * Quote or price details. * @type {InvoiceClass} * @memberof LeadClass */ 'quote': InvoiceClass; /** * Emil Resources Names (ERN) identifies the most specific owner of a resource. * @type {string} * @memberof LeadClass */ 'ern': string; /** * Payment method. When a payment method is provided, it needs to be handled in the workflow based on its type. * @type {PaymentMethodResponseClass} * @memberof LeadClass */ 'paymentMethod': PaymentMethodResponseClass; /** * Partner links. * @type {PartnerLinkClass} * @memberof LeadClass */ 'partnerLinks': PartnerLinkClass; /** * Time at which the object was created. * @type {string} * @memberof LeadClass */ 'createdAt': string; /** * Time at which the object was updated. * @type {string} * @memberof LeadClass */ 'updatedAt': string; }