/** * 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 { RunAttributesSchema } from './RunAttributesSchema'; import type { ResourceLinksSchema } from './ResourceLinksSchema'; import type { RunRelationshipsSchema } from './RunRelationshipsSchema'; /** * * @export * @interface RunResourceSchema */ export interface RunResourceSchema { /** * * @type {RunResourceSchemaTypeEnum} * @memberof RunResourceSchema */ type: RunResourceSchemaTypeEnum; /** * 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 RunResourceSchema */ id: string; /** * * @type {RunAttributesSchema} * @memberof RunResourceSchema */ attributes: RunAttributesSchema; /** * * @type {RunRelationshipsSchema} * @memberof RunResourceSchema */ relationships?: RunRelationshipsSchema; /** * * @type {ResourceLinksSchema} * @memberof RunResourceSchema */ links?: ResourceLinksSchema; /** * * @type {{ [key: string]: any; }} * @memberof RunResourceSchema */ meta?: { [key: string]: any; }; } /** * @export */ export declare const RunResourceSchemaTypeEnum: { readonly Runs: "runs"; }; export type RunResourceSchemaTypeEnum = typeof RunResourceSchemaTypeEnum[keyof typeof RunResourceSchemaTypeEnum]; /** * Check if a given object implements the RunResourceSchema interface. */ export declare function instanceOfRunResourceSchema(value: object): value is RunResourceSchema; export declare function RunResourceSchemaFromJSON(json: any): RunResourceSchema; export declare function RunResourceSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): RunResourceSchema; export declare function RunResourceSchemaToJSON(json: any): RunResourceSchema; export declare function RunResourceSchemaToJSONTyped(value?: RunResourceSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=RunResourceSchema.d.ts.map