/** * 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 AdminStudyObjectiveCanvasTypeCount */ export interface AdminStudyObjectiveCanvasTypeCount { /** * Canvas object type the objectives derive from (e.g. assignment, quiz, page) * @type {string} * @memberof AdminStudyObjectiveCanvasTypeCount */ objectType: string; /** * Number of Canvas-sourced objectives of this type * @type {number} * @memberof AdminStudyObjectiveCanvasTypeCount */ count: number; } /** * Check if a given object implements the AdminStudyObjectiveCanvasTypeCount interface. */ export declare function instanceOfAdminStudyObjectiveCanvasTypeCount(value: object): value is AdminStudyObjectiveCanvasTypeCount; export declare function AdminStudyObjectiveCanvasTypeCountFromJSON(json: any): AdminStudyObjectiveCanvasTypeCount; export declare function AdminStudyObjectiveCanvasTypeCountFromJSONTyped(json: any, ignoreDiscriminator: boolean): AdminStudyObjectiveCanvasTypeCount; export declare function AdminStudyObjectiveCanvasTypeCountToJSON(json: any): AdminStudyObjectiveCanvasTypeCount; export declare function AdminStudyObjectiveCanvasTypeCountToJSONTyped(value?: AdminStudyObjectiveCanvasTypeCount | null, ignoreDiscriminator?: boolean): any;