/** * 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 { StudyObjectiveConceptAttachment } from './StudyObjectiveConceptAttachment'; /** * * @export * @interface StudyObjectiveConceptAttachmentList */ export interface StudyObjectiveConceptAttachmentList { /** * * @type {Array} * @memberof StudyObjectiveConceptAttachmentList */ items: Array; } /** * Check if a given object implements the StudyObjectiveConceptAttachmentList interface. */ export declare function instanceOfStudyObjectiveConceptAttachmentList(value: object): value is StudyObjectiveConceptAttachmentList; export declare function StudyObjectiveConceptAttachmentListFromJSON(json: any): StudyObjectiveConceptAttachmentList; export declare function StudyObjectiveConceptAttachmentListFromJSONTyped(json: any, ignoreDiscriminator: boolean): StudyObjectiveConceptAttachmentList; export declare function StudyObjectiveConceptAttachmentListToJSON(json: any): StudyObjectiveConceptAttachmentList; export declare function StudyObjectiveConceptAttachmentListToJSONTyped(value?: StudyObjectiveConceptAttachmentList | null, ignoreDiscriminator?: boolean): any;