/* tslint:disable */ /* eslint-disable */ /** * EMIL AccountService * The EMIL AccountService 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 UpdateAccountRequestDto */ export interface UpdateAccountRequestDto { /** * Optional field to enter your own account number. * @type {string} * @memberof UpdateAccountRequestDto */ 'accountNumber'?: string; /** * Optional field to enter the honorific title you want to be called. * @type {string} * @memberof UpdateAccountRequestDto */ 'title'?: UpdateAccountRequestDtoTitleEnum; /** * The account\'s holder first name. * @type {string} * @memberof UpdateAccountRequestDto */ 'firstName': string; /** * The account\'s holder last name. * @type {string} * @memberof UpdateAccountRequestDto */ 'lastName': string; /** * The account\'s holder email address. It is displayed alongside the account in your dashboard and can be useful for searching and tracking. * @type {string} * @memberof UpdateAccountRequestDto */ 'email': string; /** * The account\'s holder gender. * @type {string} * @memberof UpdateAccountRequestDto */ 'gender': UpdateAccountRequestDtoGenderEnum; /** * The account\'s holder street name. * @type {string} * @memberof UpdateAccountRequestDto */ 'street': string; /** * The account\'s holder house number. * @type {string} * @memberof UpdateAccountRequestDto */ 'houseNumber': string; /** * The account\'s holder ZIP or postal code. * @type {string} * @memberof UpdateAccountRequestDto */ 'zipCode': string; /** * The account\'s holder city, district, suburb, town, or village. * @type {string} * @memberof UpdateAccountRequestDto */ 'city': string; /** * The account\'s holder date of birth (Required for account of type person). * @type {string} * @memberof UpdateAccountRequestDto */ 'birthDate'?: string; /** * The account\'s holder phone number. * @type {string} * @memberof UpdateAccountRequestDto */ 'phone'?: string; /** * Optional field to enter extra information. * @type {object} * @memberof UpdateAccountRequestDto */ 'metadata'?: object; /** * Optional field to add predefined custom fields. * @type {object} * @memberof UpdateAccountRequestDto */ 'customFields'?: object; /** * Optional field to enter the type of the account holder. * @type {string} * @memberof UpdateAccountRequestDto */ 'type'?: UpdateAccountRequestDtoTypeEnum; /** * The account\'s holder company name (Required for account of type org). * @type {string} * @memberof UpdateAccountRequestDto */ 'companyName'?: string; } export const UpdateAccountRequestDtoTitleEnum = { Empty: '', Dr: 'Dr.', DrMed: 'Dr. med.', Prof: 'Prof.' } as const; export type UpdateAccountRequestDtoTitleEnum = typeof UpdateAccountRequestDtoTitleEnum[keyof typeof UpdateAccountRequestDtoTitleEnum]; export const UpdateAccountRequestDtoGenderEnum = { Male: 'male', Female: 'female', Unspecified: 'unspecified' } as const; export type UpdateAccountRequestDtoGenderEnum = typeof UpdateAccountRequestDtoGenderEnum[keyof typeof UpdateAccountRequestDtoGenderEnum]; export const UpdateAccountRequestDtoTypeEnum = { Person: 'person', Org: 'org' } as const; export type UpdateAccountRequestDtoTypeEnum = typeof UpdateAccountRequestDtoTypeEnum[keyof typeof UpdateAccountRequestDtoTypeEnum];