/** * 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 ChatStudyPlanActivity */ export interface ChatStudyPlanActivity { /** * The activity itself. Its `chatId` is the activity's most recent linked chat — the resume target — which is not necessarily the chat this was looked up by. * @type {StudyPlanActivity} * @memberof ChatStudyPlanActivity */ activity: StudyPlanActivity; /** * 1-based position of the activity among the plan's position-ordered activities. * @type {number} * @memberof ChatStudyPlanActivity */ ordinal: number; /** * How many activities the plan contains. * @type {number} * @memberof ChatStudyPlanActivity */ total: number; /** * * @type {string} * @memberof ChatStudyPlanActivity */ studyPlanId: string; /** * The study objective the plan belongs to. * @type {string} * @memberof ChatStudyPlanActivity */ studyObjectiveId: string; } /** * Check if a given object implements the ChatStudyPlanActivity interface. */ export declare function instanceOfChatStudyPlanActivity(value: object): value is ChatStudyPlanActivity; export declare function ChatStudyPlanActivityFromJSON(json: any): ChatStudyPlanActivity; export declare function ChatStudyPlanActivityFromJSONTyped(json: any, ignoreDiscriminator: boolean): ChatStudyPlanActivity; export declare function ChatStudyPlanActivityToJSON(json: any): ChatStudyPlanActivity; export declare function ChatStudyPlanActivityToJSONTyped(value?: ChatStudyPlanActivity | null, ignoreDiscriminator?: boolean): any;