/** * 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 CreateObjectiveResourceDto */ export interface CreateObjectiveResourceDto { /** * * @type {string} * @memberof CreateObjectiveResourceDto */ chatId: string; /** * * @type {string} * @memberof CreateObjectiveResourceDto */ resourceType: CreateObjectiveResourceDtoResourceTypeEnum; /** * * @type {string} * @memberof CreateObjectiveResourceDto */ studyPlanActivityId?: string | null; } /** * @export */ export declare const CreateObjectiveResourceDtoResourceTypeEnum: { readonly Chat: "chat"; readonly Quiz: "quiz"; readonly Flashcard: "flashcard"; readonly PlanActivity: "plan-activity"; }; export type CreateObjectiveResourceDtoResourceTypeEnum = typeof CreateObjectiveResourceDtoResourceTypeEnum[keyof typeof CreateObjectiveResourceDtoResourceTypeEnum]; /** * Check if a given object implements the CreateObjectiveResourceDto interface. */ export declare function instanceOfCreateObjectiveResourceDto(value: object): value is CreateObjectiveResourceDto; export declare function CreateObjectiveResourceDtoFromJSON(json: any): CreateObjectiveResourceDto; export declare function CreateObjectiveResourceDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateObjectiveResourceDto; export declare function CreateObjectiveResourceDtoToJSON(json: any): CreateObjectiveResourceDto; export declare function CreateObjectiveResourceDtoToJSONTyped(value?: CreateObjectiveResourceDto | null, ignoreDiscriminator?: boolean): any;