flowus-api-sdk
Version:
Official TypeScript/JavaScript SDK for FlowUs API - Create, manage, and interact with FlowUs pages, databases, and blocks
33 lines (32 loc) • 1.21 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 PropertySchemaFormulaFormula
*/
export interface PropertySchemaFormulaFormula {
/**
* 公式表达式
* @type {string}
* @memberof PropertySchemaFormulaFormula
*/
expression: string;
}
/**
* Check if a given object implements the PropertySchemaFormulaFormula interface.
*/
export declare function instanceOfPropertySchemaFormulaFormula(value: object): value is PropertySchemaFormulaFormula;
export declare function PropertySchemaFormulaFormulaFromJSON(json: any): PropertySchemaFormulaFormula;
export declare function PropertySchemaFormulaFormulaFromJSONTyped(json: any, ignoreDiscriminator: boolean): PropertySchemaFormulaFormula;
export declare function PropertySchemaFormulaFormulaToJSON(json: any): PropertySchemaFormulaFormula;
export declare function PropertySchemaFormulaFormulaToJSONTyped(value?: PropertySchemaFormulaFormula | null, ignoreDiscriminator?: boolean): any;