/** * 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 { LinkResourceSchema } from './LinkResourceSchema'; import type { ResourcesLinksSchema } from './ResourcesLinksSchema'; /** * * @export * @interface LinksSchema */ export interface LinksSchema { /** * * @type {Array} * @memberof LinksSchema */ data?: Array; /** * * @type {ResourcesLinksSchema} * @memberof LinksSchema */ links?: ResourcesLinksSchema; /** * * @type {ResourcesMetaSchema} * @memberof LinksSchema */ meta?: ResourcesMetaSchema; } /** * Check if a given object implements the LinksSchema interface. */ export declare function instanceOfLinksSchema(value: object): value is LinksSchema; export declare function LinksSchemaFromJSON(json: any): LinksSchema; export declare function LinksSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): LinksSchema; export declare function LinksSchemaToJSON(json: any): LinksSchema; export declare function LinksSchemaToJSONTyped(value?: LinksSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=LinksSchema.d.ts.map