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.29 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 CreatePagePropertyValueEmail */ export interface CreatePagePropertyValueEmail { /** * * @type {any} * @memberof CreatePagePropertyValueEmail */ type: any | null; /** * * @type {string} * @memberof CreatePagePropertyValueEmail */ email: string; } /** * Check if a given object implements the CreatePagePropertyValueEmail interface. */ export declare function instanceOfCreatePagePropertyValueEmail(value: object): value is CreatePagePropertyValueEmail; export declare function CreatePagePropertyValueEmailFromJSON(json: any): CreatePagePropertyValueEmail; export declare function CreatePagePropertyValueEmailFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreatePagePropertyValueEmail; export declare function CreatePagePropertyValueEmailToJSON(json: any): CreatePagePropertyValueEmail; export declare function CreatePagePropertyValueEmailToJSONTyped(value?: CreatePagePropertyValueEmail | null, ignoreDiscriminator?: boolean): any;