/** * 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 { FinderAttributesSchema } from './FinderAttributesSchema'; import type { FinderRelationshipsSchema } from './FinderRelationshipsSchema'; import type { ResourceLinksSchema } from './ResourceLinksSchema'; /** * * @export * @interface FinderResourceSchema */ export interface FinderResourceSchema { /** * * @type {FinderResourceSchemaTypeEnum} * @memberof FinderResourceSchema */ type: FinderResourceSchemaTypeEnum; /** * 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 FinderResourceSchema */ id: string; /** * * @type {FinderAttributesSchema} * @memberof FinderResourceSchema */ attributes: FinderAttributesSchema; /** * * @type {FinderRelationshipsSchema} * @memberof FinderResourceSchema */ relationships?: FinderRelationshipsSchema; /** * * @type {ResourceLinksSchema} * @memberof FinderResourceSchema */ links?: ResourceLinksSchema; /** * * @type {{ [key: string]: any; }} * @memberof FinderResourceSchema */ meta?: { [key: string]: any; }; } /** * @export */ export declare const FinderResourceSchemaTypeEnum: { readonly Finders: "finders"; }; export type FinderResourceSchemaTypeEnum = typeof FinderResourceSchemaTypeEnum[keyof typeof FinderResourceSchemaTypeEnum]; /** * Check if a given object implements the FinderResourceSchema interface. */ export declare function instanceOfFinderResourceSchema(value: object): value is FinderResourceSchema; export declare function FinderResourceSchemaFromJSON(json: any): FinderResourceSchema; export declare function FinderResourceSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): FinderResourceSchema; export declare function FinderResourceSchemaToJSON(json: any): FinderResourceSchema; export declare function FinderResourceSchemaToJSONTyped(value?: FinderResourceSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=FinderResourceSchema.d.ts.map