UNPKG

@apideck/node

Version:
52 lines (51 loc) 1.2 kB
/** * Apideck * The Apideck OpenAPI Spec: SDK Optimized * * The version of the OpenAPI document: 10.13.0 * Contact: support@apideck.com * * 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 Email */ export interface Email { /** * Email address * @type {string} * @memberof Email */ email: string | null; /** * Unique identifier for the email address * @type {string} * @memberof Email */ id?: string | null; /** * Email type * @type {string} * @memberof Email */ type?: EmailType; } /** * @export * @enum {string} */ export declare enum EmailType { primary = "primary", secondary = "secondary", work = "work", personal = "personal", billing = "billing", other = "other" } export declare function EmailFromJSON(json: any): Email; export declare function EmailFromJSONTyped(json: any, ignoreDiscriminator: boolean): Email; export declare function EmailToJSON(value?: Email | null): any;