/* tslint:disable */ /* eslint-disable */ /* Code generated by ng-openapi-gen DO NOT EDIT. */ export interface CreateAccountDto { /** * First name of the user. This field is optional and can be null. */ firstName?: string | null; /** * Last name of the user. This field is optional and can be null. */ lastName?: string | null; /** * Role assigned to the account. * @type number */ roleId: number; /** * Unique username for the account. */ username: string; }