export interface EmailAddress {
    /**
     * Email address following RFC 822 standard
     * @max 100 characters
     * @example "user@example.com"
     */
    Address?: string;
}
