UNPKG

flowus-api-sdk

Version:

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

39 lines (38 loc) 1.39 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 CreatePagePropertyValuePhoneNumber */ export interface CreatePagePropertyValuePhoneNumber { /** * * @type {any} * @memberof CreatePagePropertyValuePhoneNumber */ type: any | null; /** * * @type {string} * @memberof CreatePagePropertyValuePhoneNumber */ phone_number: string; } /** * Check if a given object implements the CreatePagePropertyValuePhoneNumber interface. */ export declare function instanceOfCreatePagePropertyValuePhoneNumber(value: object): value is CreatePagePropertyValuePhoneNumber; export declare function CreatePagePropertyValuePhoneNumberFromJSON(json: any): CreatePagePropertyValuePhoneNumber; export declare function CreatePagePropertyValuePhoneNumberFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreatePagePropertyValuePhoneNumber; export declare function CreatePagePropertyValuePhoneNumberToJSON(json: any): CreatePagePropertyValuePhoneNumber; export declare function CreatePagePropertyValuePhoneNumberToJSONTyped(value?: CreatePagePropertyValuePhoneNumber | null, ignoreDiscriminator?: boolean): any;