Molybden API
Loading...
Searching...
No Matches
address.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_ADDRESS_HPP
6#define MOLYBDEN_ADDRESS_HPP
7
8#include <string>
9
10namespace molybden {
11
16struct Address {
20 std::string street;
21
25 std::string city;
26
30 std::string dependent_locality;
31
35 std::string state;
36
40 std::string zip;
41
45 std::string country_code;
46};
47
48} // namespace molybden
49
50#endif // MOLYBDEN_ADDRESS_HPP
The collected data entered by the user to a form and persisted to the user profile store.
Definition address.hpp:16
std::string zip
The ZIP code entered by the user.
Definition address.hpp:40
std::string dependent_locality
A subdivision of a city, e.g.
Definition address.hpp:30
std::string state
The name of the state.
Definition address.hpp:35
std::string city
The name of the city entered by the user.
Definition address.hpp:25
std::string street
The whole street name.
Definition address.hpp:20
std::string country_code
The ISO 3166 2-letter country code.
Definition address.hpp:45