flowus-api-sdk
Version:
Official TypeScript/JavaScript SDK for FlowUs API - Create, manage, and interact with FlowUs pages, databases, and blocks
52 lines (51 loc) • 1.52 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.
*/
import type { PropertySchemaFormulaFormula } from './PropertySchemaFormulaFormula';
/**
*
* @export
* @interface PropertySchemaFormula
*/
export interface PropertySchemaFormula {
/**
*
* @type {string}
* @memberof PropertySchemaFormula
*/
id?: string;
/**
*
* @type {string}
* @memberof PropertySchemaFormula
*/
name?: string;
/**
*
* @type {any}
* @memberof PropertySchemaFormula
*/
type?: any | null;
/**
*
* @type {PropertySchemaFormulaFormula}
* @memberof PropertySchemaFormula
*/
formula?: PropertySchemaFormulaFormula;
}
/**
* Check if a given object implements the PropertySchemaFormula interface.
*/
export declare function instanceOfPropertySchemaFormula(value: object): value is PropertySchemaFormula;
export declare function PropertySchemaFormulaFromJSON(json: any): PropertySchemaFormula;
export declare function PropertySchemaFormulaFromJSONTyped(json: any, ignoreDiscriminator: boolean): PropertySchemaFormula;
export declare function PropertySchemaFormulaToJSON(json: any): PropertySchemaFormula;
export declare function PropertySchemaFormulaToJSONTyped(value?: PropertySchemaFormula | null, ignoreDiscriminator?: boolean): any;