flowus-api-sdk
Version:
Official TypeScript/JavaScript SDK for FlowUs API - Create, manage, and interact with FlowUs pages, databases, and blocks
45 lines (44 loc) • 1.29 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 PropertyValueCheckbox
*/
export interface PropertyValueCheckbox {
/**
*
* @type {string}
* @memberof PropertyValueCheckbox
*/
id?: string;
/**
*
* @type {any}
* @memberof PropertyValueCheckbox
*/
type: any | null;
/**
*
* @type {boolean}
* @memberof PropertyValueCheckbox
*/
checkbox: boolean;
}
/**
* Check if a given object implements the PropertyValueCheckbox interface.
*/
export declare function instanceOfPropertyValueCheckbox(value: object): value is PropertyValueCheckbox;
export declare function PropertyValueCheckboxFromJSON(json: any): PropertyValueCheckbox;
export declare function PropertyValueCheckboxFromJSONTyped(json: any, ignoreDiscriminator: boolean): PropertyValueCheckbox;
export declare function PropertyValueCheckboxToJSON(json: any): PropertyValueCheckbox;
export declare function PropertyValueCheckboxToJSONTyped(value?: PropertyValueCheckbox | null, ignoreDiscriminator?: boolean): any;