/** * 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 CreateOrgAndUserRequestDto */ export interface CreateOrgAndUserRequestDto { /** * Organization\'s street name. * @type {string} * @memberof CreateOrgAndUserRequestDto */ 'street': string; /** * Organization\'s house number. * @type {string} * @memberof CreateOrgAndUserRequestDto */ 'houseNumber': string; /** * City of the organization. * @type {string} * @memberof CreateOrgAndUserRequestDto */ 'city': string; /** * Country of the organization. * @type {string} * @memberof CreateOrgAndUserRequestDto */ 'country': string; /** * Custom fields of the organization * @type {object} * @memberof CreateOrgAndUserRequestDto */ 'customFields'?: object; /** * User\'s first name * @type {string} * @memberof CreateOrgAndUserRequestDto */ 'firstName': string; /** * Organization invitation token * @type {string} * @memberof CreateOrgAndUserRequestDto */ 'invitationToken': string; /** * if user accepts end user license agreement * @type {boolean} * @memberof CreateOrgAndUserRequestDto */ 'isEulaAccepted': boolean; /** * User\'s last name * @type {string} * @memberof CreateOrgAndUserRequestDto */ 'lastName': string; /** * User\'s password * @type {string} * @memberof CreateOrgAndUserRequestDto */ 'password': string; /** * Zip code of the organization. * @type {string} * @memberof CreateOrgAndUserRequestDto */ 'zipCode': string; }