/** * 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 { CreateStudyObjectiveDtoCanvasDocumentsInner } from './CreateStudyObjectiveDtoCanvasDocumentsInner'; /** * * @export * @interface UpdateStudyObjectiveDto */ export interface UpdateStudyObjectiveDto { /** * * @type {string} * @memberof UpdateStudyObjectiveDto */ title?: string; /** * * @type {string} * @memberof UpdateStudyObjectiveDto */ notes?: string | null; /** * * @type {Array} * @memberof UpdateStudyObjectiveDto */ canvasDocuments?: Array; /** * * @type {Date} * @memberof UpdateStudyObjectiveDto */ dueAt?: Date | null; /** * * @type {boolean} * @memberof UpdateStudyObjectiveDto */ archived?: boolean; } /** * Check if a given object implements the UpdateStudyObjectiveDto interface. */ export declare function instanceOfUpdateStudyObjectiveDto(value: object): value is UpdateStudyObjectiveDto; export declare function UpdateStudyObjectiveDtoFromJSON(json: any): UpdateStudyObjectiveDto; export declare function UpdateStudyObjectiveDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateStudyObjectiveDto; export declare function UpdateStudyObjectiveDtoToJSON(json: any): UpdateStudyObjectiveDto; export declare function UpdateStudyObjectiveDtoToJSONTyped(value?: UpdateStudyObjectiveDto | null, ignoreDiscriminator?: boolean): any;