/** * 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'; /** * * @export * @interface CreateLabelRequestBodyData */ export interface CreateLabelRequestBodyData { /** * * @type {CreateLabelRequestBodyDataTypeEnum} * @memberof CreateLabelRequestBodyData */ type: CreateLabelRequestBodyDataTypeEnum; /** * * @type {LabelAttributesSchema} * @memberof CreateLabelRequestBodyData */ attributes: LabelAttributesSchema; } /** * @export */ export declare const CreateLabelRequestBodyDataTypeEnum: { readonly Labels: "labels"; }; export type CreateLabelRequestBodyDataTypeEnum = typeof CreateLabelRequestBodyDataTypeEnum[keyof typeof CreateLabelRequestBodyDataTypeEnum]; /** * Check if a given object implements the CreateLabelRequestBodyData interface. */ export declare function instanceOfCreateLabelRequestBodyData(value: object): value is CreateLabelRequestBodyData; export declare function CreateLabelRequestBodyDataFromJSON(json: any): CreateLabelRequestBodyData; export declare function CreateLabelRequestBodyDataFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateLabelRequestBodyData; export declare function CreateLabelRequestBodyDataToJSON(json: any): CreateLabelRequestBodyData; export declare function CreateLabelRequestBodyDataToJSONTyped(value?: CreateLabelRequestBodyData | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=CreateLabelRequestBodyData.d.ts.map