summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/PersonaPostalAddressType.php
blob: 39ba34dee593e5370ddb233203796b426aadd8c6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
<?php
/**
 * Contains \jamesiarmes\PhpEws\Type\PersonaPostalAddressType.
 */

namespace jamesiarmes\PhpEws\Type;

use jamesiarmes\PhpEws\Type;

/**
 * Defines a postal address associated with a persona.
 *
 * @package php-ews\Type
 */
class PersonaPostalAddressType extends Type
{
    /**
     * Specifies the accuracy of the latitude and longitude of the associated
     * postal address.
     *
     * @since Exchange 2013
     *
     * @var float
     */
    public $Accuracy;

    /**
     * Specifies the altitude of a postal address.
     *
     * @since Exchange 2013
     *
     * @var float
     */
    public $Altitude;

    /**
     * Specifies the accuracy of the altitude property for a postal address.
     *
     * @since Exchange 2013
     *
     * @var float
     */
    public $AltitudeAccuracy;

    /**
     * Represents the city name that is associated with a contact.
     *
     * @since Exchange 2013
     *
     * @var string
     */
    public $City;

    /**
     * Identifies a country identifier in a postal address.
     *
     * @since Exchange 2013
     *
     * @var string
     */
    public $Country;

    /**
     * Specifies the formatted display value of the associated postal address.
     *
     * @since Exchange 2013
     *
     * @var string
     */
    public $FormattedAddress;

    /**
     * Specifies the latitude of the location of the associated postal address.
     *
     * @since Exchange 2013
     *
     * @var float
     */
    public $Latitude;

    /**
     * Specifies information about the origin of the associated postal address,
     * for example, a contact or a telephone book.
     *
     * @since Exchange 2013
     *
     * @var string
     *
     * @see \jamesiarmes\PhpEws\Enumeration\LocationSourceType
     */
    public $LocationSource;

    /**
     * Contains a string specifying a Uniform Resource Identifier (URI) of the
     * associated postal address.
     *
     * @since Exchange 2013
     *
     * @var string
     */
    public $LocationUri;

    /**
     * Specifies the longitude of the location of the associated postal address.
     *
     * @since Exchange 2013
     *
     * @var float
     */
    public $Longitude;

    /**
     * Specifies the "post office box" portion of a postal address.
     *
     * @since Exchange 2013
     *
     * @var type
     */
    public $PostOfficeBox;

    /**
     * Represents the postal code for a contact item.
     *
     * @since Exchange 2013
     *
     * @var type
     */
    public $PostalCode;

    /**
	 * Represents the state of residence for a contact item.
	 *
	 * @since Exchange 2013
	 *
	 * @var string
	 */
	public $State;

    /**
     * Represents a street address for a contact item.
     *
     * @since Exchange 2013
     *
     * @var string
     */
    public $Street;

    /**
	 * Specifies the type of postal address or phone number.
     *
     * For example, "Home" or "Business".
	 *
	 * @since Exchange 2013
	 *
	 * @var string
	 */
	public $Type;
}