/** * SmartyMeet Dev03 API REST * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.1 * Contact: developer@smartymeet.com * * 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 { ResourceLinksSchema } from './ResourceLinksSchema'; import type { AssessmentResourceSchema } from './AssessmentResourceSchema'; /** * * @export * @interface AssessmentSchema */ export interface AssessmentSchema { /** * * @type {AssessmentResourceSchema} * @memberof AssessmentSchema */ data?: AssessmentResourceSchema; /** * * @type {ResourceLinksSchema} * @memberof AssessmentSchema */ links?: ResourceLinksSchema; /** * * @type {{ [key: string]: any; }} * @memberof AssessmentSchema */ meta?: { [key: string]: any; }; } /** * Check if a given object implements the AssessmentSchema interface. */ export declare function instanceOfAssessmentSchema(value: object): value is AssessmentSchema; export declare function AssessmentSchemaFromJSON(json: any): AssessmentSchema; export declare function AssessmentSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): AssessmentSchema; export declare function AssessmentSchemaToJSON(json: any): AssessmentSchema; export declare function AssessmentSchemaToJSONTyped(value?: AssessmentSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=AssessmentSchema.d.ts.map