flowus-api-sdk
Version:
Official TypeScript/JavaScript SDK for FlowUs API - Create, manage, and interact with FlowUs pages, databases, and blocks
51 lines (50 loc) • 1.36 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 PropertySchemaEmail
*/
export interface PropertySchemaEmail {
/**
*
* @type {string}
* @memberof PropertySchemaEmail
*/
id?: string;
/**
*
* @type {string}
* @memberof PropertySchemaEmail
*/
name?: string;
/**
*
* @type {any}
* @memberof PropertySchemaEmail
*/
type?: any | null;
/**
*
* @type {object}
* @memberof PropertySchemaEmail
*/
email?: object;
}
/**
* Check if a given object implements the PropertySchemaEmail interface.
*/
export declare function instanceOfPropertySchemaEmail(value: object): value is PropertySchemaEmail;
export declare function PropertySchemaEmailFromJSON(json: any): PropertySchemaEmail;
export declare function PropertySchemaEmailFromJSONTyped(json: any, ignoreDiscriminator: boolean): PropertySchemaEmail;
export declare function PropertySchemaEmailToJSON(json: any): PropertySchemaEmail;
export declare function PropertySchemaEmailToJSONTyped(value?: PropertySchemaEmail | null, ignoreDiscriminator?: boolean): any;