/** * Group of attributes intended to hold information about email address associated with the transaction. */ export declare class Email { /** * Full email address including the alias, @ symbol, domain, and root domain. */ emailAddress?: string; constructor(email: EmailProperties); } export interface EmailProperties { emailAddress?: string; }