/* tslint:disable */ /* eslint-disable */ /** * The Association for Cube Commons * The CubeCommons API caters to each and every whim of the Frontend, i.e. it receives, bundles, packages and formats data exactly as the Frontend needs it. * * The version of the OpenAPI document: 0.9.95 * Contact: tech@cubecommons.ca * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Create user flow request * @export * @interface CreateUserRequest */ export interface CreateUserRequest { /** * The name entered by the user. * @type {string} * @memberof CreateUserRequest */ 'name': string; /** * The name entered by the user. * @type {string} * @memberof CreateUserRequest */ 'organization'?: string; /** * The name entered by the user. * @type {string} * @memberof CreateUserRequest */ 'website'?: string; /** * The name entered by the user. * @type {string} * @memberof CreateUserRequest */ 'tag'?: string; /** * The email entered by the user. * @type {string} * @memberof CreateUserRequest */ 'email': string; /** * The password entered by the user. * @type {string} * @memberof CreateUserRequest */ 'password': string; /** * Indicate if user has accepted terms. * @type {boolean} * @memberof CreateUserRequest */ 'hasAcceptedTerms': boolean; /** * Indicate if user has accepted newsletter. * @type {boolean} * @memberof CreateUserRequest */ 'hasAcceptedNewsletter': boolean; /** * Indicate if user is age of majority. * @type {boolean} * @memberof CreateUserRequest */ 'isOver18': boolean; }