/** * OpenAPI definition * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface AttributeBlockEditable */ export interface AttributeBlockEditable { /** * * @type {string} * @memberof AttributeBlockEditable */ type?: AttributeBlockEditableTypeEnum; /** * * @type {string} * @memberof AttributeBlockEditable */ description?: string; } /** * @export */ export declare const AttributeBlockEditableTypeEnum: { readonly Bool: "bool"; readonly Number: "number"; readonly String: "string"; readonly Time: "time"; readonly Array: "array"; readonly Json: "json"; readonly Object: "object"; readonly ObjectArray: "object_array"; }; export type AttributeBlockEditableTypeEnum = typeof AttributeBlockEditableTypeEnum[keyof typeof AttributeBlockEditableTypeEnum]; /** * Check if a given object implements the AttributeBlockEditable interface. */ export declare function instanceOfAttributeBlockEditable(value: object): value is AttributeBlockEditable; export declare function AttributeBlockEditableFromJSON(json: any): AttributeBlockEditable; export declare function AttributeBlockEditableFromJSONTyped(json: any, ignoreDiscriminator: boolean): AttributeBlockEditable; export declare function AttributeBlockEditableToJSON(json: any): AttributeBlockEditable; export declare function AttributeBlockEditableToJSONTyped(value?: AttributeBlockEditable | null, ignoreDiscriminator?: boolean): any;