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.31 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 CreatePagePropertyValueNumber
*/
export interface CreatePagePropertyValueNumber {
/**
*
* @type {any}
* @memberof CreatePagePropertyValueNumber
*/
type: any | null;
/**
*
* @type {number}
* @memberof CreatePagePropertyValueNumber
*/
number: number;
}
/**
* Check if a given object implements the CreatePagePropertyValueNumber interface.
*/
export declare function instanceOfCreatePagePropertyValueNumber(value: object): value is CreatePagePropertyValueNumber;
export declare function CreatePagePropertyValueNumberFromJSON(json: any): CreatePagePropertyValueNumber;
export declare function CreatePagePropertyValueNumberFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreatePagePropertyValueNumber;
export declare function CreatePagePropertyValueNumberToJSON(json: any): CreatePagePropertyValueNumber;
export declare function CreatePagePropertyValueNumberToJSONTyped(value?: CreatePagePropertyValueNumber | null, ignoreDiscriminator?: boolean): any;