UNPKG

flowus-api-sdk

Version:

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

51 lines (50 loc) 1.36 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 PropertySchemaTitle */ export interface PropertySchemaTitle { /** * * @type {string} * @memberof PropertySchemaTitle */ id?: string; /** * * @type {string} * @memberof PropertySchemaTitle */ name?: string; /** * * @type {any} * @memberof PropertySchemaTitle */ type?: any | null; /** * * @type {object} * @memberof PropertySchemaTitle */ title?: object; } /** * Check if a given object implements the PropertySchemaTitle interface. */ export declare function instanceOfPropertySchemaTitle(value: object): value is PropertySchemaTitle; export declare function PropertySchemaTitleFromJSON(json: any): PropertySchemaTitle; export declare function PropertySchemaTitleFromJSONTyped(json: any, ignoreDiscriminator: boolean): PropertySchemaTitle; export declare function PropertySchemaTitleToJSON(json: any): PropertySchemaTitle; export declare function PropertySchemaTitleToJSONTyped(value?: PropertySchemaTitle | null, ignoreDiscriminator?: boolean): any;