/** * 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 { TimelineResourceSchema } from './TimelineResourceSchema'; import type { ResourceLinksSchema } from './ResourceLinksSchema'; /** * * @export * @interface TimelineSchema */ export interface TimelineSchema { /** * * @type {TimelineResourceSchema} * @memberof TimelineSchema */ data?: TimelineResourceSchema; /** * * @type {ResourceLinksSchema} * @memberof TimelineSchema */ links?: ResourceLinksSchema; /** * * @type {{ [key: string]: any; }} * @memberof TimelineSchema */ meta?: { [key: string]: any; }; } /** * Check if a given object implements the TimelineSchema interface. */ export declare function instanceOfTimelineSchema(value: object): value is TimelineSchema; export declare function TimelineSchemaFromJSON(json: any): TimelineSchema; export declare function TimelineSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): TimelineSchema; export declare function TimelineSchemaToJSON(json: any): TimelineSchema; export declare function TimelineSchemaToJSONTyped(value?: TimelineSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=TimelineSchema.d.ts.map