/** * 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 { LabelAttributesSchema } from './LabelAttributesSchema'; import type { ResourceLinksSchema } from './ResourceLinksSchema'; /** * * @export * @interface LabelResourceSchema */ export interface LabelResourceSchema { /** * * @type {LabelResourceSchemaTypeEnum} * @memberof LabelResourceSchema */ type: LabelResourceSchemaTypeEnum; /** * 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 LabelResourceSchema */ id: string; /** * * @type {LabelAttributesSchema} * @memberof LabelResourceSchema */ attributes: LabelAttributesSchema; /** * * @type {object} * @memberof LabelResourceSchema */ relationships?: object; /** * * @type {ResourceLinksSchema} * @memberof LabelResourceSchema */ links?: ResourceLinksSchema; /** * * @type {{ [key: string]: any; }} * @memberof LabelResourceSchema */ meta?: { [key: string]: any; }; } /** * @export */ export declare const LabelResourceSchemaTypeEnum: { readonly Labels: "labels"; }; export type LabelResourceSchemaTypeEnum = typeof LabelResourceSchemaTypeEnum[keyof typeof LabelResourceSchemaTypeEnum]; /** * Check if a given object implements the LabelResourceSchema interface. */ export declare function instanceOfLabelResourceSchema(value: object): value is LabelResourceSchema; export declare function LabelResourceSchemaFromJSON(json: any): LabelResourceSchema; export declare function LabelResourceSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): LabelResourceSchema; export declare function LabelResourceSchemaToJSON(json: any): LabelResourceSchema; export declare function LabelResourceSchemaToJSONTyped(value?: LabelResourceSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=LabelResourceSchema.d.ts.map