Molybden API
Loading...
Searching...
No Matches
user_profile.hpp
1// Copyright (c) 2000-2024 TeamDev. All rights reserved.
2// TeamDev PROPRIETARY and CONFIDENTIAL.
3// Use is subject to license terms.
4
5#ifndef MOLYBDEN_USER_PROFILE_HPP
6#define MOLYBDEN_USER_PROFILE_HPP
7
8#include "molybden/user/address.hpp"
9
10namespace molybden {
11
21
25 std::string full_name;
26
30 std::string email;
31
35 std::string company_name;
36
40 std::string phone_number;
41
45 std::string guid;
46};
47
48} // namespace molybden
49
50#endif // MOLYBDEN_USER_PROFILE_HPP
The collected data entered by the user to a form and persisted to the user profile store.
Definition address.hpp:16
The collected data entered by the user to a form and persisted to the user data store.
Definition user_profile.hpp:16
std::string company_name
The name of the company entered by the user.
Definition user_profile.hpp:35
std::string email
The email value entered by the user.
Definition user_profile.hpp:30
std::string full_name
The full name value entered by the user.
Definition user_profile.hpp:25
std::string guid
An internal field used for identifying a user data profile by Chromium.
Definition user_profile.hpp:45
std::string phone_number
The phone number value entered by the user.
Definition user_profile.hpp:40
Address address
The address entered by the user.
Definition user_profile.hpp:20