/* tslint:disable */ /* eslint-disable */ /** * EMIL AuthService * The EMIL AuthService 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 OrganizationClass */ export interface OrganizationClass { /** * Internal unique identifier for the object. You should not have to use this, use code instead. * @type {number} * @memberof OrganizationClass */ 'id': number; /** * Unique identifier for the object. * @type {string} * @memberof OrganizationClass */ 'code': string; /** * * @type {number} * @memberof OrganizationClass */ 'parentId'?: number; /** * * @type {string} * @memberof OrganizationClass */ 'parentName'?: string; /** * * @type {string} * @memberof OrganizationClass */ 'email': string; /** * * @type {string} * @memberof OrganizationClass */ 'ern'?: string; /** * * @type {string} * @memberof OrganizationClass */ 'name': string; /** * * @type {string} * @memberof OrganizationClass */ 'type': string; /** * * @type {string} * @memberof OrganizationClass */ 'street': string; /** * * @type {string} * @memberof OrganizationClass */ 'houseNumber': string; /** * * @type {string} * @memberof OrganizationClass */ 'zipCode': string; /** * * @type {string} * @memberof OrganizationClass */ 'city': string; /** * * @type {string} * @memberof OrganizationClass */ 'country': string; /** * * @type {object} * @memberof OrganizationClass */ 'customFields'?: object; /** * Time at which the object was created. * @type {string} * @memberof OrganizationClass */ 'createdAt': string; /** * Time at which the object was updated. * @type {string} * @memberof OrganizationClass */ 'updatedAt': string; /** * * @type {string} * @memberof OrganizationClass */ 'deletedAt'?: string | null; }