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.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 PropertySchemaDate */ export interface PropertySchemaDate { /** * * @type {string} * @memberof PropertySchemaDate */ id?: string; /** * * @type {string} * @memberof PropertySchemaDate */ name?: string; /** * * @type {any} * @memberof PropertySchemaDate */ type?: any | null; /** * * @type {object} * @memberof PropertySchemaDate */ date?: object; } /** * Check if a given object implements the PropertySchemaDate interface. */ export declare function instanceOfPropertySchemaDate(value: object): value is PropertySchemaDate; export declare function PropertySchemaDateFromJSON(json: any): PropertySchemaDate; export declare function PropertySchemaDateFromJSONTyped(json: any, ignoreDiscriminator: boolean): PropertySchemaDate; export declare function PropertySchemaDateToJSON(json: any): PropertySchemaDate; export declare function PropertySchemaDateToJSONTyped(value?: PropertySchemaDate | null, ignoreDiscriminator?: boolean): any;