UNPKG

flowus-api-sdk

Version:

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

45 lines (44 loc) 1.21 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 PropertyValueUrl */ export interface PropertyValueUrl { /** * * @type {string} * @memberof PropertyValueUrl */ id?: string; /** * * @type {any} * @memberof PropertyValueUrl */ type?: any | null; /** * * @type {string} * @memberof PropertyValueUrl */ url?: string; } /** * Check if a given object implements the PropertyValueUrl interface. */ export declare function instanceOfPropertyValueUrl(value: object): value is PropertyValueUrl; export declare function PropertyValueUrlFromJSON(json: any): PropertyValueUrl; export declare function PropertyValueUrlFromJSONTyped(json: any, ignoreDiscriminator: boolean): PropertyValueUrl; export declare function PropertyValueUrlToJSON(json: any): PropertyValueUrl; export declare function PropertyValueUrlToJSONTyped(value?: PropertyValueUrl | null, ignoreDiscriminator?: boolean): any;