21 lines
525 B
TypeScript
21 lines
525 B
TypeScript
/* generated using openapi-typescript-codegen -- do not edit */
|
|
/* istanbul ignore file */
|
|
/* tslint:disable */
|
|
/* eslint-disable */
|
|
import type { PayRateSchema } from './PayRateSchema';
|
|
export type UserUpdate = {
|
|
id: number;
|
|
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);
|
|
};
|
|
|