Interface UserDataProfile


public interface UserDataProfile
User's profile data containing address and contact information used for web form autofill functionality.

Please note, this class is for storing autofill data and should not be confused with a browser's user profile, which manages settings, bookmarks, extensions, etc.

Since:
7.23
See Also:
  • Method Details

    • newBuilder

      static UserDataProfile.Builder newBuilder(Address address)
      Creates a new UserDataProfile builder with the given required parameters.
      Parameters:
      address - the user's address
      Returns:
      a new TouchPoint.Builder instance
      Since:
      8.0.0
    • fullName

      default String fullName()
      The full name of the user.
    • email

      default String email()
      The email of the user.
    • companyName

      default String companyName()
      The company of the user.
    • phoneNumber

      default String phoneNumber()
      The phone number of the user.
    • address

      default Address address()
      The address of the user.