/** * 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 { LinkAttributesSchema } from './LinkAttributesSchema'; import type { ResourceLinksSchema } from './ResourceLinksSchema'; /** * * @export * @interface LinkResourceSchema */ export interface LinkResourceSchema { /** * * @type {LinkResourceSchemaTypeEnum} * @memberof LinkResourceSchema */ type: LinkResourceSchemaTypeEnum; /** * 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 LinkResourceSchema */ id: string; /** * * @type {LinkAttributesSchema} * @memberof LinkResourceSchema */ attributes: LinkAttributesSchema; /** * * @type {object} * @memberof LinkResourceSchema */ relationships?: object; /** * * @type {ResourceLinksSchema} * @memberof LinkResourceSchema */ links?: ResourceLinksSchema; /** * * @type {{ [key: string]: any; }} * @memberof LinkResourceSchema */ meta?: { [key: string]: any; }; } /** * @export */ export declare const LinkResourceSchemaTypeEnum: { readonly Links: "links"; }; export type LinkResourceSchemaTypeEnum = typeof LinkResourceSchemaTypeEnum[keyof typeof LinkResourceSchemaTypeEnum]; /** * Check if a given object implements the LinkResourceSchema interface. */ export declare function instanceOfLinkResourceSchema(value: object): value is LinkResourceSchema; export declare function LinkResourceSchemaFromJSON(json: any): LinkResourceSchema; export declare function LinkResourceSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): LinkResourceSchema; export declare function LinkResourceSchemaToJSON(json: any): LinkResourceSchema; export declare function LinkResourceSchemaToJSONTyped(value?: LinkResourceSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=LinkResourceSchema.d.ts.map