/** * 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 { JobResourceSchema } from './JobResourceSchema'; /** * * @export * @interface JobSchema */ export interface JobSchema { /** * * @type {JobResourceSchema} * @memberof JobSchema */ data?: JobResourceSchema; /** * * @type {ResourceLinksSchema} * @memberof JobSchema */ links?: ResourceLinksSchema; /** * * @type {{ [key: string]: any; }} * @memberof JobSchema */ meta?: { [key: string]: any; }; } /** * Check if a given object implements the JobSchema interface. */ export declare function instanceOfJobSchema(value: object): value is JobSchema; export declare function JobSchemaFromJSON(json: any): JobSchema; export declare function JobSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): JobSchema; export declare function JobSchemaToJSON(json: any): JobSchema; export declare function JobSchemaToJSONTyped(value?: JobSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=JobSchema.d.ts.map