feat: create user
This commit is contained in:
19
src/client/models/UserCreate.ts
Normal file
19
src/client/models/UserCreate.ts
Normal file
@@ -0,0 +1,19 @@
|
||||
/* generated using openapi-typescript-codegen -- do not edit */
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
import type { PayRateSchema } from './PayRateSchema';
|
||||
export type UserCreate = {
|
||||
telegramId: number;
|
||||
phoneNumber?: (string | null);
|
||||
firstName: string;
|
||||
secondName: string;
|
||||
comment: string;
|
||||
isAdmin: boolean;
|
||||
isBlocked: boolean;
|
||||
isDeleted: boolean;
|
||||
roleKey: string;
|
||||
payRate?: (PayRateSchema | null);
|
||||
positionKey?: (string | null);
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user