UNPKG

flowus-api-sdk

Version:

Official TypeScript/JavaScript SDK for FlowUs API - Create, manage, and interact with FlowUs pages, databases, and blocks

39 lines (38 loc) 1.34 kB
/** * 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 CreatePagePropertyValueCheckbox */ export interface CreatePagePropertyValueCheckbox { /** * * @type {any} * @memberof CreatePagePropertyValueCheckbox */ type: any | null; /** * * @type {boolean} * @memberof CreatePagePropertyValueCheckbox */ checkbox: boolean; } /** * Check if a given object implements the CreatePagePropertyValueCheckbox interface. */ export declare function instanceOfCreatePagePropertyValueCheckbox(value: object): value is CreatePagePropertyValueCheckbox; export declare function CreatePagePropertyValueCheckboxFromJSON(json: any): CreatePagePropertyValueCheckbox; export declare function CreatePagePropertyValueCheckboxFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreatePagePropertyValueCheckbox; export declare function CreatePagePropertyValueCheckboxToJSON(json: any): CreatePagePropertyValueCheckbox; export declare function CreatePagePropertyValueCheckboxToJSONTyped(value?: CreatePagePropertyValueCheckbox | null, ignoreDiscriminator?: boolean): any;