/* 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 LeadAccountClass */ export interface LeadAccountClass { /** * Account number * @type {string} * @memberof LeadAccountClass */ 'accountNumber': string; /** * Account honorific title * @type {string} * @memberof LeadAccountClass */ 'title': LeadAccountClassTitleEnum; /** * Account first name * @type {string} * @memberof LeadAccountClass */ 'firstName': string; /** * Account last name * @type {string} * @memberof LeadAccountClass */ 'lastName': string; /** * Account email * @type {string} * @memberof LeadAccountClass */ 'email': string; /** * Account gender * @type {string} * @memberof LeadAccountClass */ 'gender': string; /** * Account street * @type {string} * @memberof LeadAccountClass */ 'street': string; /** * Account house number * @type {string} * @memberof LeadAccountClass */ 'houseNumber': string; /** * Account zip code * @type {string} * @memberof LeadAccountClass */ 'zipCode': string; /** * Account city * @type {string} * @memberof LeadAccountClass */ 'city': string; /** * Account phone number * @type {string} * @memberof LeadAccountClass */ 'phone'?: string; /** * Optional metadata. * @type {object} * @memberof LeadAccountClass */ 'metadata': object; /** * Customer birth date. * @type {string} * @memberof LeadAccountClass */ 'birthDate': string; /** * Custom fields could be included additional required/optional fields that the account would need for specific cases. * @type {object} * @memberof LeadAccountClass */ 'customFields': object; } export const LeadAccountClassTitleEnum = { Empty: '', Dr: 'Dr.', DrMed: 'Dr. med.', Prof: 'Prof.' } as const; export type LeadAccountClassTitleEnum = typeof LeadAccountClassTitleEnum[keyof typeof LeadAccountClassTitleEnum];