/* 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 CreateUserRequestDto */ export interface CreateUserRequestDto { /** * User\'s email address. * @type {string} * @memberof CreateUserRequestDto */ 'email': string; /** * User\'s invite token. * @type {string} * @memberof CreateUserRequestDto */ 'inviteToken': string; /** * User\'s first name. * @type {string} * @memberof CreateUserRequestDto */ 'firstName': string; /** * User\'s last name. * @type {string} * @memberof CreateUserRequestDto */ 'lastName': string; /** * User\'s password. * @type {string} * @memberof CreateUserRequestDto */ 'password': string; /** * True if user accepts end user license agreement. * @type {boolean} * @memberof CreateUserRequestDto */ 'isEulaAccepted': boolean; }