/** * 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 { TimelineAttributesSchema } from './TimelineAttributesSchema'; /** * * @export * @interface TimelineResourceSchema */ export interface TimelineResourceSchema { /** * * @type {TimelineResourceSchemaTypeEnum} * @memberof TimelineResourceSchema */ type: TimelineResourceSchemaTypeEnum; /** * Returns results with an ID greater than the specified ID. The ID is a combination of a UUID4 (hexadecimal) followed by a hyphen and an integer number from 1 to 9. * @type {string} * @memberof TimelineResourceSchema */ id: string; /** * * @type {TimelineAttributesSchema} * @memberof TimelineResourceSchema */ attributes: TimelineAttributesSchema; /** * * @type {object} * @memberof TimelineResourceSchema */ relationships?: object; /** * * @type {ResourceLinksSchema} * @memberof TimelineResourceSchema */ links?: ResourceLinksSchema; /** * * @type {{ [key: string]: any; }} * @memberof TimelineResourceSchema */ meta?: { [key: string]: any; }; } /** * @export */ export declare const TimelineResourceSchemaTypeEnum: { readonly Timelines: "timelines"; }; export type TimelineResourceSchemaTypeEnum = typeof TimelineResourceSchemaTypeEnum[keyof typeof TimelineResourceSchemaTypeEnum]; /** * Check if a given object implements the TimelineResourceSchema interface. */ export declare function instanceOfTimelineResourceSchema(value: object): value is TimelineResourceSchema; export declare function TimelineResourceSchemaFromJSON(json: any): TimelineResourceSchema; export declare function TimelineResourceSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): TimelineResourceSchema; export declare function TimelineResourceSchemaToJSON(json: any): TimelineResourceSchema; export declare function TimelineResourceSchemaToJSONTyped(value?: TimelineResourceSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=TimelineResourceSchema.d.ts.map