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.35 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 PropertyValuePhoneNumber */ export interface PropertyValuePhoneNumber { /** * * @type {string} * @memberof PropertyValuePhoneNumber */ id?: string; /** * * @type {any} * @memberof PropertyValuePhoneNumber */ type?: any | null; /** * * @type {string} * @memberof PropertyValuePhoneNumber */ phone_number?: string; } /** * Check if a given object implements the PropertyValuePhoneNumber interface. */ export declare function instanceOfPropertyValuePhoneNumber(value: object): value is PropertyValuePhoneNumber; export declare function PropertyValuePhoneNumberFromJSON(json: any): PropertyValuePhoneNumber; export declare function PropertyValuePhoneNumberFromJSONTyped(json: any, ignoreDiscriminator: boolean): PropertyValuePhoneNumber; export declare function PropertyValuePhoneNumberToJSON(json: any): PropertyValuePhoneNumber; export declare function PropertyValuePhoneNumberToJSONTyped(value?: PropertyValuePhoneNumber | null, ignoreDiscriminator?: boolean): any;