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) • 2.34 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 { CreatePagePropertyValueCheckbox } from './CreatePagePropertyValueCheckbox';
import type { CreatePagePropertyValueDate } from './CreatePagePropertyValueDate';
import type { CreatePagePropertyValueEmail } from './CreatePagePropertyValueEmail';
import type { CreatePagePropertyValueFiles } from './CreatePagePropertyValueFiles';
import type { CreatePagePropertyValueMultiSelect } from './CreatePagePropertyValueMultiSelect';
import type { CreatePagePropertyValueNumber } from './CreatePagePropertyValueNumber';
import type { CreatePagePropertyValuePeople } from './CreatePagePropertyValuePeople';
import type { CreatePagePropertyValuePhoneNumber } from './CreatePagePropertyValuePhoneNumber';
import type { CreatePagePropertyValueRelation } from './CreatePagePropertyValueRelation';
import type { CreatePagePropertyValueRichText } from './CreatePagePropertyValueRichText';
import type { CreatePagePropertyValueSelect } from './CreatePagePropertyValueSelect';
import type { CreatePagePropertyValueTitle } from './CreatePagePropertyValueTitle';
import type { CreatePagePropertyValueUrl } from './CreatePagePropertyValueUrl';
/**
* @type CreatePagePropertyValue
*
* @export
*/
export type CreatePagePropertyValue = CreatePagePropertyValueCheckbox | CreatePagePropertyValueDate | CreatePagePropertyValueEmail | CreatePagePropertyValueFiles | CreatePagePropertyValueMultiSelect | CreatePagePropertyValueNumber | CreatePagePropertyValuePeople | CreatePagePropertyValuePhoneNumber | CreatePagePropertyValueRelation | CreatePagePropertyValueRichText | CreatePagePropertyValueSelect | CreatePagePropertyValueTitle | CreatePagePropertyValueUrl;
export declare function CreatePagePropertyValueFromJSON(json: any): CreatePagePropertyValue;
export declare function CreatePagePropertyValueFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreatePagePropertyValue;
export declare function CreatePagePropertyValueToJSON(json: any): any;
export declare function CreatePagePropertyValueToJSONTyped(value?: CreatePagePropertyValue | null, ignoreDiscriminator?: boolean): any;