/** * 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 { JobAttributesSchema } from './JobAttributesSchema'; import type { JobRelationshipsSchema } from './JobRelationshipsSchema'; /** * * @export * @interface JobResourceSchema */ export interface JobResourceSchema { /** * * @type {JobResourceSchemaTypeEnum} * @memberof JobResourceSchema */ type: JobResourceSchemaTypeEnum; /** * 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 JobResourceSchema */ id: string; /** * * @type {JobAttributesSchema} * @memberof JobResourceSchema */ attributes: JobAttributesSchema; /** * * @type {JobRelationshipsSchema} * @memberof JobResourceSchema */ relationships?: JobRelationshipsSchema; /** * * @type {ResourceLinksSchema} * @memberof JobResourceSchema */ links?: ResourceLinksSchema; /** * * @type {{ [key: string]: any; }} * @memberof JobResourceSchema */ meta?: { [key: string]: any; }; } /** * @export */ export declare const JobResourceSchemaTypeEnum: { readonly Jobs: "jobs"; }; export type JobResourceSchemaTypeEnum = typeof JobResourceSchemaTypeEnum[keyof typeof JobResourceSchemaTypeEnum]; /** * Check if a given object implements the JobResourceSchema interface. */ export declare function instanceOfJobResourceSchema(value: object): value is JobResourceSchema; export declare function JobResourceSchemaFromJSON(json: any): JobResourceSchema; export declare function JobResourceSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): JobResourceSchema; export declare function JobResourceSchemaToJSON(json: any): JobResourceSchema; export declare function JobResourceSchemaToJSONTyped(value?: JobResourceSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=JobResourceSchema.d.ts.map