/** * 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 { CreateLabelRequestBodyData } from './CreateLabelRequestBodyData'; /** * * @export * @interface CreateLabelRequestBody */ export interface CreateLabelRequestBody { /** * * @type {CreateLabelRequestBodyData} * @memberof CreateLabelRequestBody */ data: CreateLabelRequestBodyData; } /** * Check if a given object implements the CreateLabelRequestBody interface. */ export declare function instanceOfCreateLabelRequestBody(value: object): value is CreateLabelRequestBody; export declare function CreateLabelRequestBodyFromJSON(json: any): CreateLabelRequestBody; export declare function CreateLabelRequestBodyFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateLabelRequestBody; export declare function CreateLabelRequestBodyToJSON(json: any): CreateLabelRequestBody; export declare function CreateLabelRequestBodyToJSONTyped(value?: CreateLabelRequestBody | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=CreateLabelRequestBody.d.ts.map