/** * 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 AttributeBlockRead */ export interface AttributeBlockRead { /** * * @type {string} * @memberof AttributeBlockRead */ id?: string; /** * * @type {string} * @memberof AttributeBlockRead */ key?: string; /** * * @type {string} * @memberof AttributeBlockRead */ description?: string; /** * * @type {string} * @memberof AttributeBlockRead */ type?: AttributeBlockReadTypeEnum; } /** * @export */ export declare const AttributeBlockReadTypeEnum: { 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 AttributeBlockReadTypeEnum = typeof AttributeBlockReadTypeEnum[keyof typeof AttributeBlockReadTypeEnum]; /** * Check if a given object implements the AttributeBlockRead interface. */ export declare function instanceOfAttributeBlockRead(value: object): value is AttributeBlockRead; export declare function AttributeBlockReadFromJSON(json: any): AttributeBlockRead; export declare function AttributeBlockReadFromJSONTyped(json: any, ignoreDiscriminator: boolean): AttributeBlockRead; export declare function AttributeBlockReadToJSON(json: any): AttributeBlockRead; export declare function AttributeBlockReadToJSONTyped(value?: AttributeBlockRead | null, ignoreDiscriminator?: boolean): any;