/** * FastAPI * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { RequestFile } from './models'; export class Dictionary { /** * The unique identifier of the dictionary. */ 'id'?: number; /** * The name of the dictionary. */ 'name'?: string; /** * A brief description of the dictionary. */ 'description'?: string; /** * The date and time when the dictionary was created. */ 'createdAt'?: Date; /** * The date and time when the dictionary was last updated. */ 'updatedAt'?: Date; static discriminator: string | undefined = undefined; static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ { "name": "id", "baseName": "id", "type": "number" }, { "name": "name", "baseName": "name", "type": "string" }, { "name": "description", "baseName": "description", "type": "string" }, { "name": "createdAt", "baseName": "created_at", "type": "Date" }, { "name": "updatedAt", "baseName": "updated_at", "type": "Date" } ]; static getAttributeTypeMap() { return Dictionary.attributeTypeMap; } }