/** * 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 { TalentRelationshipsSchema } from './TalentRelationshipsSchema'; import type { TalentAttributesSchema } from './TalentAttributesSchema'; import type { ResourceLinksSchema } from './ResourceLinksSchema'; /** * * @export * @interface TalentResourceSchema */ export interface TalentResourceSchema { /** * * @type {TalentResourceSchemaTypeEnum} * @memberof TalentResourceSchema */ type: TalentResourceSchemaTypeEnum; /** * 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 TalentResourceSchema */ id: string; /** * * @type {TalentAttributesSchema} * @memberof TalentResourceSchema */ attributes: TalentAttributesSchema; /** * * @type {TalentRelationshipsSchema} * @memberof TalentResourceSchema */ relationships?: TalentRelationshipsSchema; /** * * @type {ResourceLinksSchema} * @memberof TalentResourceSchema */ links?: ResourceLinksSchema; /** * * @type {{ [key: string]: any; }} * @memberof TalentResourceSchema */ meta?: { [key: string]: any; }; } /** * @export */ export declare const TalentResourceSchemaTypeEnum: { readonly Talents: "talents"; }; export type TalentResourceSchemaTypeEnum = typeof TalentResourceSchemaTypeEnum[keyof typeof TalentResourceSchemaTypeEnum]; /** * Check if a given object implements the TalentResourceSchema interface. */ export declare function instanceOfTalentResourceSchema(value: object): value is TalentResourceSchema; export declare function TalentResourceSchemaFromJSON(json: any): TalentResourceSchema; export declare function TalentResourceSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): TalentResourceSchema; export declare function TalentResourceSchemaToJSON(json: any): TalentResourceSchema; export declare function TalentResourceSchemaToJSONTyped(value?: TalentResourceSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=TalentResourceSchema.d.ts.map