/** * 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 { TalentResourceSchema } from './TalentResourceSchema'; import type { ResourcesLinksSchema } from './ResourcesLinksSchema'; /** * * @export * @interface TalentsSchema */ export interface TalentsSchema { /** * * @type {Array} * @memberof TalentsSchema */ data?: Array; /** * * @type {ResourcesLinksSchema} * @memberof TalentsSchema */ links?: ResourcesLinksSchema; /** * * @type {ResourcesMetaSchema} * @memberof TalentsSchema */ meta?: ResourcesMetaSchema; } /** * Check if a given object implements the TalentsSchema interface. */ export declare function instanceOfTalentsSchema(value: object): value is TalentsSchema; export declare function TalentsSchemaFromJSON(json: any): TalentsSchema; export declare function TalentsSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): TalentsSchema; export declare function TalentsSchemaToJSON(json: any): TalentsSchema; export declare function TalentsSchemaToJSONTyped(value?: TalentsSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=TalentsSchema.d.ts.map