/** * 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. */ import type { StudyPlanActivity } from './StudyPlanActivity'; /** * * @export * @interface StudyPlan */ export interface StudyPlan { /** * * @type {string} * @memberof StudyPlan */ id: string; /** * * @type {string} * @memberof StudyPlan */ accountUserId: string; /** * * @type {string} * @memberof StudyPlan */ ownerType: StudyPlanOwnerTypeEnum; /** * * @type {string} * @memberof StudyPlan */ ownerId: string; /** * Tool call id of the proposal this plan was saved from, when it came from one. * @type {string} * @memberof StudyPlan */ sourceToolCallId: string | null; /** * * @type {Date} * @memberof StudyPlan */ createdAt: Date; /** * * @type {Date} * @memberof StudyPlan */ updatedAt: Date; /** * * @type {Array} * @memberof StudyPlan */ activities: Array; } /** * @export */ export declare const StudyPlanOwnerTypeEnum: { readonly StudyObjective: "study_objective"; }; export type StudyPlanOwnerTypeEnum = typeof StudyPlanOwnerTypeEnum[keyof typeof StudyPlanOwnerTypeEnum]; /** * Check if a given object implements the StudyPlan interface. */ export declare function instanceOfStudyPlan(value: object): value is StudyPlan; export declare function StudyPlanFromJSON(json: any): StudyPlan; export declare function StudyPlanFromJSONTyped(json: any, ignoreDiscriminator: boolean): StudyPlan; export declare function StudyPlanToJSON(json: any): StudyPlan; export declare function StudyPlanToJSONTyped(value?: StudyPlan | null, ignoreDiscriminator?: boolean): any;