/** * 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 { CareerAttributesSchema } from './CareerAttributesSchema'; import type { ResourceLinksSchema } from './ResourceLinksSchema'; /** * * @export * @interface CareerResourceSchema */ export interface CareerResourceSchema { /** * * @type {CareerResourceSchemaTypeEnum} * @memberof CareerResourceSchema */ type: CareerResourceSchemaTypeEnum; /** * 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 CareerResourceSchema */ id: string; /** * * @type {CareerAttributesSchema} * @memberof CareerResourceSchema */ attributes: CareerAttributesSchema; /** * * @type {object} * @memberof CareerResourceSchema */ relationships?: object; /** * * @type {ResourceLinksSchema} * @memberof CareerResourceSchema */ links?: ResourceLinksSchema; /** * * @type {{ [key: string]: any; }} * @memberof CareerResourceSchema */ meta?: { [key: string]: any; }; } /** * @export */ export declare const CareerResourceSchemaTypeEnum: { readonly Careers: "careers"; }; export type CareerResourceSchemaTypeEnum = typeof CareerResourceSchemaTypeEnum[keyof typeof CareerResourceSchemaTypeEnum]; /** * Check if a given object implements the CareerResourceSchema interface. */ export declare function instanceOfCareerResourceSchema(value: object): value is CareerResourceSchema; export declare function CareerResourceSchemaFromJSON(json: any): CareerResourceSchema; export declare function CareerResourceSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): CareerResourceSchema; export declare function CareerResourceSchemaToJSON(json: any): CareerResourceSchema; export declare function CareerResourceSchemaToJSONTyped(value?: CareerResourceSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=CareerResourceSchema.d.ts.map