/** * 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 { ResourcesMetaSchema } from './ResourcesMetaSchema'; import type { CareerResourceSchema } from './CareerResourceSchema'; import type { ResourcesLinksSchema } from './ResourcesLinksSchema'; /** * * @export * @interface CareersSchema */ export interface CareersSchema { /** * * @type {Array} * @memberof CareersSchema */ data?: Array; /** * * @type {ResourcesLinksSchema} * @memberof CareersSchema */ links?: ResourcesLinksSchema; /** * * @type {ResourcesMetaSchema} * @memberof CareersSchema */ meta?: ResourcesMetaSchema; } /** * Check if a given object implements the CareersSchema interface. */ export declare function instanceOfCareersSchema(value: object): value is CareersSchema; export declare function CareersSchemaFromJSON(json: any): CareersSchema; export declare function CareersSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): CareersSchema; export declare function CareersSchemaToJSON(json: any): CareersSchema; export declare function CareersSchemaToJSONTyped(value?: CareersSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=CareersSchema.d.ts.map