/** * 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 { JobRelationshipsSchema } from './JobRelationshipsSchema'; /** * * @export * @interface ListUserJobsRelationship */ export interface ListUserJobsRelationship { /** * List of resource linkage identifiers * @type {Array} * @memberof ListUserJobsRelationship */ data?: Array; /** * * @type {ResourceLinksSchema} * @memberof ListUserJobsRelationship */ links?: ResourceLinksSchema; /** * * @type {{ [key: string]: any; }} * @memberof ListUserJobsRelationship */ meta?: { [key: string]: any; }; } /** * Check if a given object implements the ListUserJobsRelationship interface. */ export declare function instanceOfListUserJobsRelationship(value: object): value is ListUserJobsRelationship; export declare function ListUserJobsRelationshipFromJSON(json: any): ListUserJobsRelationship; export declare function ListUserJobsRelationshipFromJSONTyped(json: any, ignoreDiscriminator: boolean): ListUserJobsRelationship; export declare function ListUserJobsRelationshipToJSON(json: any): ListUserJobsRelationship; export declare function ListUserJobsRelationshipToJSONTyped(value?: ListUserJobsRelationship | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=ListUserJobsRelationship.d.ts.map