/** * 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 StudyObjectiveConceptSummary */ export interface StudyObjectiveConceptSummary { /** * * @type {string} * @memberof StudyObjectiveConceptSummary */ id: string; /** * * @type {string} * @memberof StudyObjectiveConceptSummary */ name: string; /** * * @type {string} * @memberof StudyObjectiveConceptSummary */ shortName: string; /** * * @type {string} * @memberof StudyObjectiveConceptSummary */ description: string; /** * * @type {number} * @memberof StudyObjectiveConceptSummary */ displayOrder: number | null; } /** * Check if a given object implements the StudyObjectiveConceptSummary interface. */ export declare function instanceOfStudyObjectiveConceptSummary(value: object): value is StudyObjectiveConceptSummary; export declare function StudyObjectiveConceptSummaryFromJSON(json: any): StudyObjectiveConceptSummary; export declare function StudyObjectiveConceptSummaryFromJSONTyped(json: any, ignoreDiscriminator: boolean): StudyObjectiveConceptSummary; export declare function StudyObjectiveConceptSummaryToJSON(json: any): StudyObjectiveConceptSummary; export declare function StudyObjectiveConceptSummaryToJSONTyped(value?: StudyObjectiveConceptSummary | null, ignoreDiscriminator?: boolean): any;