/** * 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 UpdateLabelRequestBodyData */ export interface UpdateLabelRequestBodyData { /** * * @type {UpdateLabelRequestBodyDataTypeEnum} * @memberof UpdateLabelRequestBodyData */ type: UpdateLabelRequestBodyDataTypeEnum; /** * * @type {string} * @memberof UpdateLabelRequestBodyData */ id: string; /** * * @type {LabelAttributesSchema} * @memberof UpdateLabelRequestBodyData */ attributes: LabelAttributesSchema; } /** * @export */ export declare const UpdateLabelRequestBodyDataTypeEnum: { readonly Labels: "labels"; }; export type UpdateLabelRequestBodyDataTypeEnum = typeof UpdateLabelRequestBodyDataTypeEnum[keyof typeof UpdateLabelRequestBodyDataTypeEnum]; /** * Check if a given object implements the UpdateLabelRequestBodyData interface. */ export declare function instanceOfUpdateLabelRequestBodyData(value: object): value is UpdateLabelRequestBodyData; export declare function UpdateLabelRequestBodyDataFromJSON(json: any): UpdateLabelRequestBodyData; export declare function UpdateLabelRequestBodyDataFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateLabelRequestBodyData; export declare function UpdateLabelRequestBodyDataToJSON(json: any): UpdateLabelRequestBodyData; export declare function UpdateLabelRequestBodyDataToJSONTyped(value?: UpdateLabelRequestBodyData | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=UpdateLabelRequestBodyData.d.ts.map