/** * 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 ObjectiveResource */ export interface ObjectiveResource { /** * * @type {string} * @memberof ObjectiveResource */ id: string; /** * * @type {string} * @memberof ObjectiveResource */ studyObjectiveId: string; /** * * @type {string} * @memberof ObjectiveResource */ accountUserId: string; /** * * @type {string} * @memberof ObjectiveResource */ chatId: string; /** * * @type {string} * @memberof ObjectiveResource */ resourceType: ObjectiveResourceResourceTypeEnum; /** * The study plan activity this chat was started from, or null when it was not launched from one. Goes null if that plan is later replaced or deleted — the resource itself survives. * @type {string} * @memberof ObjectiveResource */ studyPlanActivityId: string | null; /** * * @type {Date} * @memberof ObjectiveResource */ createdAt: Date; } /** * @export */ export declare const ObjectiveResourceResourceTypeEnum: { readonly Chat: "chat"; readonly Quiz: "quiz"; readonly Flashcard: "flashcard"; readonly PlanActivity: "plan-activity"; }; export type ObjectiveResourceResourceTypeEnum = typeof ObjectiveResourceResourceTypeEnum[keyof typeof ObjectiveResourceResourceTypeEnum]; /** * Check if a given object implements the ObjectiveResource interface. */ export declare function instanceOfObjectiveResource(value: object): value is ObjectiveResource; export declare function ObjectiveResourceFromJSON(json: any): ObjectiveResource; export declare function ObjectiveResourceFromJSONTyped(json: any, ignoreDiscriminator: boolean): ObjectiveResource; export declare function ObjectiveResourceToJSON(json: any): ObjectiveResource; export declare function ObjectiveResourceToJSONTyped(value?: ObjectiveResource | null, ignoreDiscriminator?: boolean): any;