27 lines
507 B
TypeScript
27 lines
507 B
TypeScript
/* 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;
|
|
}
|