/** *
Contains information about a custom verification email template.
*/ export interface _CustomVerificationEmailTemplate { /** *The name of the custom verification email template.
*/ TemplateName?: string; /** *The email address that the custom verification email is sent from.
*/ FromEmailAddress?: string; /** *The subject line of the custom verification email.
*/ TemplateSubject?: string; /** *The URL that the recipient of the verification email is sent to if his or her address is successfully verified.
*/ SuccessRedirectionURL?: string; /** *The URL that the recipient of the verification email is sent to if his or her address is not successfully verified.
*/ FailureRedirectionURL?: string; } export declare type _UnmarshalledCustomVerificationEmailTemplate = _CustomVerificationEmailTemplate;