flowus-api-sdk
Version:
Official TypeScript/JavaScript SDK for FlowUs API - Create, manage, and interact with FlowUs pages, databases, and blocks
35 lines (34 loc) • 1.86 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 { PropertyValueCheckbox } from './PropertyValueCheckbox';
import type { PropertyValueDate } from './PropertyValueDate';
import type { PropertyValueEmail } from './PropertyValueEmail';
import type { PropertyValueFiles } from './PropertyValueFiles';
import type { PropertyValueMultiSelect } from './PropertyValueMultiSelect';
import type { PropertyValueNumber } from './PropertyValueNumber';
import type { PropertyValuePeople } from './PropertyValuePeople';
import type { PropertyValuePhoneNumber } from './PropertyValuePhoneNumber';
import type { PropertyValueRelation } from './PropertyValueRelation';
import type { PropertyValueRichText } from './PropertyValueRichText';
import type { PropertyValueSelect } from './PropertyValueSelect';
import type { PropertyValueTitle } from './PropertyValueTitle';
import type { PropertyValueUrl } from './PropertyValueUrl';
/**
* @type PropertyValue
*
* @export
*/
export type PropertyValue = PropertyValueCheckbox | PropertyValueDate | PropertyValueEmail | PropertyValueFiles | PropertyValueMultiSelect | PropertyValueNumber | PropertyValuePeople | PropertyValuePhoneNumber | PropertyValueRelation | PropertyValueRichText | PropertyValueSelect | PropertyValueTitle | PropertyValueUrl;
export declare function PropertyValueFromJSON(json: any): PropertyValue;
export declare function PropertyValueFromJSONTyped(json: any, ignoreDiscriminator: boolean): PropertyValue;
export declare function PropertyValueToJSON(json: any): any;
export declare function PropertyValueToJSONTyped(value?: PropertyValue | null, ignoreDiscriminator?: boolean): any;