/** * 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 { LinkResourceSchema } from './LinkResourceSchema'; import type { ResourceLinksSchema } from './ResourceLinksSchema'; /** * * @export * @interface LinkSchema */ export interface LinkSchema { /** * * @type {LinkResourceSchema} * @memberof LinkSchema */ data?: LinkResourceSchema; /** * * @type {ResourceLinksSchema} * @memberof LinkSchema */ links?: ResourceLinksSchema; /** * * @type {{ [key: string]: any; }} * @memberof LinkSchema */ meta?: { [key: string]: any; }; } /** * Check if a given object implements the LinkSchema interface. */ export declare function instanceOfLinkSchema(value: object): value is LinkSchema; export declare function LinkSchemaFromJSON(json: any): LinkSchema; export declare function LinkSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): LinkSchema; export declare function LinkSchemaToJSON(json: any): LinkSchema; export declare function LinkSchemaToJSONTyped(value?: LinkSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=LinkSchema.d.ts.map