flowus-api-sdk
Version: 
Official TypeScript/JavaScript SDK for FlowUs API - Create, manage, and interact with FlowUs pages, databases, and blocks
51 lines (50 loc) • 1.42 kB
TypeScript
/**
 * FlowUs API
 * FlowUs Developer API
 *
 * The version of the OpenAPI document: 1.0.0
 *
 *
 * 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 PropertySchemaCheckbox
 */
export interface PropertySchemaCheckbox {
    /**
     *
     * @type {string}
     * @memberof PropertySchemaCheckbox
     */
    id?: string;
    /**
     *
     * @type {string}
     * @memberof PropertySchemaCheckbox
     */
    name?: string;
    /**
     *
     * @type {any}
     * @memberof PropertySchemaCheckbox
     */
    type?: any | null;
    /**
     *
     * @type {object}
     * @memberof PropertySchemaCheckbox
     */
    checkbox?: object;
}
/**
 * Check if a given object implements the PropertySchemaCheckbox interface.
 */
export declare function instanceOfPropertySchemaCheckbox(value: object): value is PropertySchemaCheckbox;
export declare function PropertySchemaCheckboxFromJSON(json: any): PropertySchemaCheckbox;
export declare function PropertySchemaCheckboxFromJSONTyped(json: any, ignoreDiscriminator: boolean): PropertySchemaCheckbox;
export declare function PropertySchemaCheckboxToJSON(json: any): PropertySchemaCheckbox;
export declare function PropertySchemaCheckboxToJSONTyped(value?: PropertySchemaCheckbox | null, ignoreDiscriminator?: boolean): any;