/** * Athena API * REST API for the Athena system * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface UserFileAssociation */ export interface UserFileAssociation { /** * * @type {string} * @memberof UserFileAssociation */ id: string; /** * * @type {string} * @memberof UserFileAssociation */ kind: UserFileAssociationKindEnum; /** * Id of the parent row in its respective table. * @type {string} * @memberof UserFileAssociation */ kindId: string; /** * * @type {Date} * @memberof UserFileAssociation */ createdAt: Date; } /** * @export */ export declare const UserFileAssociationKindEnum: { readonly Chat: "chat"; readonly Message: "message"; readonly StudyObjective: "study_objective"; readonly ObjectiveResource: "objective_resource"; }; export type UserFileAssociationKindEnum = typeof UserFileAssociationKindEnum[keyof typeof UserFileAssociationKindEnum]; /** * Check if a given object implements the UserFileAssociation interface. */ export declare function instanceOfUserFileAssociation(value: object): value is UserFileAssociation; export declare function UserFileAssociationFromJSON(json: any): UserFileAssociation; export declare function UserFileAssociationFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserFileAssociation; export declare function UserFileAssociationToJSON(json: any): UserFileAssociation; export declare function UserFileAssociationToJSONTyped(value?: UserFileAssociation | null, ignoreDiscriminator?: boolean): any;