/** * 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 StudySpace */ export interface StudySpace { /** * * @type {string} * @memberof StudySpace */ id: string; /** * External course identifier (e.g. a Canvas course id) this space is backed by, or null for a space with no course. * @type {string} * @memberof StudySpace */ courseId: string | null; /** * Display title. Empty when no title has been set, so clients need a fallback (e.g. the course name). * @type {string} * @memberof StudySpace */ title: string; /** * Number of non-archived study objectives in this space. * @type {number} * @memberof StudySpace */ activeObjectiveCount: number; /** * * @type {Date} * @memberof StudySpace */ createdAt: Date; /** * * @type {Date} * @memberof StudySpace */ updatedAt: Date; } /** * Check if a given object implements the StudySpace interface. */ export declare function instanceOfStudySpace(value: object): value is StudySpace; export declare function StudySpaceFromJSON(json: any): StudySpace; export declare function StudySpaceFromJSONTyped(json: any, ignoreDiscriminator: boolean): StudySpace; export declare function StudySpaceToJSON(json: any): StudySpace; export declare function StudySpaceToJSONTyped(value?: StudySpace | null, ignoreDiscriminator?: boolean): any;