/** * EMIL Tenant Service * The EMIL TenantService 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 UpdateOrganizationRequestDtoRest */ export interface UpdateOrganizationRequestDtoRest { /** * Organization\'s street name. * @type {string} * @memberof UpdateOrganizationRequestDtoRest */ 'street': string; /** * Organization\'s house number. * @type {string} * @memberof UpdateOrganizationRequestDtoRest */ 'houseNumber': string; /** * Zip code of the organization. * @type {string} * @memberof UpdateOrganizationRequestDtoRest */ 'zipCode': string; /** * City of the organization. * @type {string} * @memberof UpdateOrganizationRequestDtoRest */ 'city': string; /** * Country of the organization. * @type {string} * @memberof UpdateOrganizationRequestDtoRest */ 'country': string; /** * Custom fields of the organization * @type {object} * @memberof UpdateOrganizationRequestDtoRest */ 'customFields': object; /** * Organization\'s contact person email address. * @type {string} * @memberof UpdateOrganizationRequestDtoRest */ 'email': string; /** * Name of the invited organization. * @type {string} * @memberof UpdateOrganizationRequestDtoRest */ 'name': string; }