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.24 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.
*/
/**
*
* @export
* @interface PropertyValueEmail
*/
export interface PropertyValueEmail {
/**
*
* @type {string}
* @memberof PropertyValueEmail
*/
id?: string;
/**
*
* @type {any}
* @memberof PropertyValueEmail
*/
type?: any | null;
/**
*
* @type {string}
* @memberof PropertyValueEmail
*/
email?: string;
}
/**
* Check if a given object implements the PropertyValueEmail interface.
*/
export declare function instanceOfPropertyValueEmail(value: object): value is PropertyValueEmail;
export declare function PropertyValueEmailFromJSON(json: any): PropertyValueEmail;
export declare function PropertyValueEmailFromJSONTyped(json: any, ignoreDiscriminator: boolean): PropertyValueEmail;
export declare function PropertyValueEmailToJSON(json: any): PropertyValueEmail;
export declare function PropertyValueEmailToJSONTyped(value?: PropertyValueEmail | null, ignoreDiscriminator?: boolean): any;