Files
full-stack-fastapi-template/frontend/src/client/schemas/$UserUpdate.ts

39 lines
610 B
TypeScript
Raw Normal View History

/* generated using openapi-typescript-codegen -- do no edit */
/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */
export const $UserUpdate = {
properties: {
email: {
2024-03-01 12:12:55 -05:00
type: 'any-of',
contains: [{
type: 'string',
2024-03-01 12:12:55 -05:00
}, {
type: 'null',
}],
},
is_active: {
type: 'boolean',
},
is_superuser: {
type: 'boolean',
},
full_name: {
2024-03-01 12:12:55 -05:00
type: 'any-of',
contains: [{
type: 'string',
2024-03-01 12:12:55 -05:00
}, {
type: 'null',
}],
},
password: {
2024-03-01 12:12:55 -05:00
type: 'any-of',
contains: [{
type: 'string',
2024-03-01 12:12:55 -05:00
}, {
type: 'null',
}],
},
},
} as const;