commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
lib
commercetools-import
src
Models
Customers
CustomerAddress.php
1
<?php
2
3
declare(strict_types=1);
9
namespace
Commercetools\Import\Models\Customers
;
10
11
use
Commercetools\Base\DateTimeImmutableCollection
;
12
use
Commercetools\Base\JsonObject
;
13
use
Commercetools\Import\Models\Customfields\Custom
;
14
15
interface
CustomerAddress
extends
JsonObject
16
{
17
public
const
FIELD_KEY
=
'key'
;
18
public
const
FIELD_TITLE
=
'title'
;
19
public
const
FIELD_SALUTATION
=
'salutation'
;
20
public
const
FIELD_FIRST_NAME
=
'firstName'
;
21
public
const
FIELD_LAST_NAME
=
'lastName'
;
22
public
const
FIELD_STREET_NAME
=
'streetName'
;
23
public
const
FIELD_STREET_NUMBER
=
'streetNumber'
;
24
public
const
FIELD_ADDITIONAL_STREET_INFO
=
'additionalStreetInfo'
;
25
public
const
FIELD_POSTAL_CODE
=
'postalCode'
;
26
public
const
FIELD_CITY
=
'city'
;
27
public
const
FIELD_REGION
=
'region'
;
28
public
const
FIELD_STATE
=
'state'
;
29
public
const
FIELD_COUNTRY
=
'country'
;
30
public
const
FIELD_COMPANY
=
'company'
;
31
public
const
FIELD_DEPARTMENT
=
'department'
;
32
public
const
FIELD_BUILDING
=
'building'
;
33
public
const
FIELD_APARTMENT
=
'apartment'
;
34
public
const
FIELD_P_O_BOX
=
'pOBox'
;
35
public
const
FIELD_PHONE
=
'phone'
;
36
public
const
FIELD_MOBILE
=
'mobile'
;
37
public
const
FIELD_EMAIL
=
'email'
;
38
public
const
FIELD_FAX
=
'fax'
;
39
public
const
FIELD_ADDITIONAL_ADDRESS_INFO
=
'additionalAddressInfo'
;
40
public
const
FIELD_EXTERNAL_ID
=
'externalId'
;
41
public
const
FIELD_CUSTOM
=
'custom'
;
42
50
public
function
getKey
();
51
56
public
function
getTitle
();
57
62
public
function
getSalutation
();
63
68
public
function
getFirstName
();
69
74
public
function
getLastName
();
75
80
public
function
getStreetName
();
81
86
public
function
getStreetNumber
();
87
92
public
function
getAdditionalStreetInfo
();
93
98
public
function
getPostalCode
();
99
104
public
function
getCity
();
105
110
public
function
getRegion
();
111
116
public
function
getState
();
117
124
public
function
getCountry
();
125
130
public
function
getCompany
();
131
136
public
function
getDepartment
();
137
142
public
function
getBuilding
();
143
148
public
function
getApartment
();
149
154
public
function
getPOBox
();
155
160
public
function
getPhone
();
161
166
public
function
getMobile
();
167
172
public
function
getEmail
();
173
178
public
function
getFax
();
179
184
public
function
getAdditionalAddressInfo
();
185
190
public
function
getExternalId
();
191
198
public
function
getCustom
();
199
203
public
function
setKey
(?
string
$key): void;
204
208
public
function
setTitle
(?
string
$title): void;
209
213
public
function
setSalutation
(?
string
$salutation): void;
214
218
public
function
setFirstName
(?
string
$firstName): void;
219
223
public
function
setLastName
(?
string
$lastName): void;
224
228
public
function
setStreetName
(?
string
$streetName): void;
229
233
public
function
setStreetNumber
(?
string
$streetNumber): void;
234
238
public
function
setAdditionalStreetInfo
(?
string
$additionalStreetInfo): void;
239
243
public
function
setPostalCode
(?
string
$postalCode): void;
244
248
public
function
setCity
(?
string
$city): void;
249
253
public
function
setRegion
(?
string
$region): void;
254
258
public
function
setState
(?
string
$state): void;
259
263
public
function
setCountry
(?
string
$country): void;
264
268
public
function
setCompany
(?
string
$company): void;
269
273
public
function
setDepartment
(?
string
$department): void;
274
278
public
function
setBuilding
(?
string
$building): void;
279
283
public
function
setApartment
(?
string
$apartment): void;
284
288
public
function
setPOBox
(?
string
$pOBox): void;
289
293
public
function
setPhone
(?
string
$phone): void;
294
298
public
function
setMobile
(?
string
$mobile): void;
299
303
public
function
setEmail
(?
string
$email): void;
304
308
public
function
setFax
(?
string
$fax): void;
309
313
public
function
setAdditionalAddressInfo
(?
string
$additionalAddressInfo): void;
314
318
public
function
setExternalId
(?
string
$externalId): void;
319
323
public
function
setCustom
(?
Custom
$custom): void;
324
}
Commercetools\Base\DateTimeImmutableCollection
Definition:
DateTimeImmutableCollection.php:21
Commercetools\Base\JsonObject
Definition:
JsonObject.php:15
Commercetools\Import\Models\Customers\CustomerAddress
Definition:
CustomerAddress.php:16
Commercetools\Import\Models\Customers\CustomerAddress\setRegion
setRegion(?string $region)
Commercetools\Import\Models\Customers\CustomerAddress\setTitle
setTitle(?string $title)
Commercetools\Import\Models\Customers\CustomerAddress\getAdditionalAddressInfo
getAdditionalAddressInfo()
Commercetools\Import\Models\Customers\CustomerAddress\FIELD_STATE
const FIELD_STATE
Definition:
CustomerAddress.php:28
Commercetools\Import\Models\Customers\CustomerAddress\setPostalCode
setPostalCode(?string $postalCode)
Commercetools\Import\Models\Customers\CustomerAddress\FIELD_POSTAL_CODE
const FIELD_POSTAL_CODE
Definition:
CustomerAddress.php:25
Commercetools\Import\Models\Customers\CustomerAddress\getPostalCode
getPostalCode()
Commercetools\Import\Models\Customers\CustomerAddress\getBuilding
getBuilding()
Commercetools\Import\Models\Customers\CustomerAddress\FIELD_BUILDING
const FIELD_BUILDING
Definition:
CustomerAddress.php:32
Commercetools\Import\Models\Customers\CustomerAddress\setSalutation
setSalutation(?string $salutation)
Commercetools\Import\Models\Customers\CustomerAddress\setMobile
setMobile(?string $mobile)
Commercetools\Import\Models\Customers\CustomerAddress\setKey
setKey(?string $key)
Commercetools\Import\Models\Customers\CustomerAddress\setPOBox
setPOBox(?string $pOBox)
Commercetools\Import\Models\Customers\CustomerAddress\FIELD_FAX
const FIELD_FAX
Definition:
CustomerAddress.php:38
Commercetools\Import\Models\Customers\CustomerAddress\FIELD_MOBILE
const FIELD_MOBILE
Definition:
CustomerAddress.php:36
Commercetools\Import\Models\Customers\CustomerAddress\setPhone
setPhone(?string $phone)
Commercetools\Import\Models\Customers\CustomerAddress\FIELD_TITLE
const FIELD_TITLE
Definition:
CustomerAddress.php:18
Commercetools\Import\Models\Customers\CustomerAddress\FIELD_KEY
const FIELD_KEY
Definition:
CustomerAddress.php:17
Commercetools\Import\Models\Customers\CustomerAddress\getPhone
getPhone()
Commercetools\Import\Models\Customers\CustomerAddress\setDepartment
setDepartment(?string $department)
Commercetools\Import\Models\Customers\CustomerAddress\FIELD_EXTERNAL_ID
const FIELD_EXTERNAL_ID
Definition:
CustomerAddress.php:40
Commercetools\Import\Models\Customers\CustomerAddress\getDepartment
getDepartment()
Commercetools\Import\Models\Customers\CustomerAddress\getStreetName
getStreetName()
Commercetools\Import\Models\Customers\CustomerAddress\getApartment
getApartment()
Commercetools\Import\Models\Customers\CustomerAddress\FIELD_APARTMENT
const FIELD_APARTMENT
Definition:
CustomerAddress.php:33
Commercetools\Import\Models\Customers\CustomerAddress\setBuilding
setBuilding(?string $building)
Commercetools\Import\Models\Customers\CustomerAddress\getCompany
getCompany()
Commercetools\Import\Models\Customers\CustomerAddress\getFax
getFax()
Commercetools\Import\Models\Customers\CustomerAddress\setState
setState(?string $state)
Commercetools\Import\Models\Customers\CustomerAddress\FIELD_EMAIL
const FIELD_EMAIL
Definition:
CustomerAddress.php:37
Commercetools\Import\Models\Customers\CustomerAddress\setCustom
setCustom(?Custom $custom)
Commercetools\Import\Models\Customers\CustomerAddress\setStreetName
setStreetName(?string $streetName)
Commercetools\Import\Models\Customers\CustomerAddress\getExternalId
getExternalId()
Commercetools\Import\Models\Customers\CustomerAddress\FIELD_LAST_NAME
const FIELD_LAST_NAME
Definition:
CustomerAddress.php:21
Commercetools\Import\Models\Customers\CustomerAddress\getCity
getCity()
Commercetools\Import\Models\Customers\CustomerAddress\getMobile
getMobile()
Commercetools\Import\Models\Customers\CustomerAddress\setApartment
setApartment(?string $apartment)
Commercetools\Import\Models\Customers\CustomerAddress\getTitle
getTitle()
Commercetools\Import\Models\Customers\CustomerAddress\FIELD_STREET_NUMBER
const FIELD_STREET_NUMBER
Definition:
CustomerAddress.php:23
Commercetools\Import\Models\Customers\CustomerAddress\FIELD_FIRST_NAME
const FIELD_FIRST_NAME
Definition:
CustomerAddress.php:20
Commercetools\Import\Models\Customers\CustomerAddress\setFirstName
setFirstName(?string $firstName)
Commercetools\Import\Models\Customers\CustomerAddress\getKey
getKey()
Commercetools\Import\Models\Customers\CustomerAddress\FIELD_P_O_BOX
const FIELD_P_O_BOX
Definition:
CustomerAddress.php:34
Commercetools\Import\Models\Customers\CustomerAddress\getEmail
getEmail()
Commercetools\Import\Models\Customers\CustomerAddress\setLastName
setLastName(?string $lastName)
Commercetools\Import\Models\Customers\CustomerAddress\setFax
setFax(?string $fax)
Commercetools\Import\Models\Customers\CustomerAddress\FIELD_CUSTOM
const FIELD_CUSTOM
Definition:
CustomerAddress.php:41
Commercetools\Import\Models\Customers\CustomerAddress\getFirstName
getFirstName()
Commercetools\Import\Models\Customers\CustomerAddress\FIELD_DEPARTMENT
const FIELD_DEPARTMENT
Definition:
CustomerAddress.php:31
Commercetools\Import\Models\Customers\CustomerAddress\FIELD_ADDITIONAL_ADDRESS_INFO
const FIELD_ADDITIONAL_ADDRESS_INFO
Definition:
CustomerAddress.php:39
Commercetools\Import\Models\Customers\CustomerAddress\setExternalId
setExternalId(?string $externalId)
Commercetools\Import\Models\Customers\CustomerAddress\FIELD_REGION
const FIELD_REGION
Definition:
CustomerAddress.php:27
Commercetools\Import\Models\Customers\CustomerAddress\setAdditionalStreetInfo
setAdditionalStreetInfo(?string $additionalStreetInfo)
Commercetools\Import\Models\Customers\CustomerAddress\setStreetNumber
setStreetNumber(?string $streetNumber)
Commercetools\Import\Models\Customers\CustomerAddress\getCustom
getCustom()
Commercetools\Import\Models\Customers\CustomerAddress\getState
getState()
Commercetools\Import\Models\Customers\CustomerAddress\FIELD_COMPANY
const FIELD_COMPANY
Definition:
CustomerAddress.php:30
Commercetools\Import\Models\Customers\CustomerAddress\getSalutation
getSalutation()
Commercetools\Import\Models\Customers\CustomerAddress\setCompany
setCompany(?string $company)
Commercetools\Import\Models\Customers\CustomerAddress\getStreetNumber
getStreetNumber()
Commercetools\Import\Models\Customers\CustomerAddress\setAdditionalAddressInfo
setAdditionalAddressInfo(?string $additionalAddressInfo)
Commercetools\Import\Models\Customers\CustomerAddress\FIELD_CITY
const FIELD_CITY
Definition:
CustomerAddress.php:26
Commercetools\Import\Models\Customers\CustomerAddress\FIELD_SALUTATION
const FIELD_SALUTATION
Definition:
CustomerAddress.php:19
Commercetools\Import\Models\Customers\CustomerAddress\FIELD_ADDITIONAL_STREET_INFO
const FIELD_ADDITIONAL_STREET_INFO
Definition:
CustomerAddress.php:24
Commercetools\Import\Models\Customers\CustomerAddress\FIELD_COUNTRY
const FIELD_COUNTRY
Definition:
CustomerAddress.php:29
Commercetools\Import\Models\Customers\CustomerAddress\getLastName
getLastName()
Commercetools\Import\Models\Customers\CustomerAddress\getPOBox
getPOBox()
Commercetools\Import\Models\Customers\CustomerAddress\FIELD_PHONE
const FIELD_PHONE
Definition:
CustomerAddress.php:35
Commercetools\Import\Models\Customers\CustomerAddress\getAdditionalStreetInfo
getAdditionalStreetInfo()
Commercetools\Import\Models\Customers\CustomerAddress\setCountry
setCountry(?string $country)
Commercetools\Import\Models\Customers\CustomerAddress\FIELD_STREET_NAME
const FIELD_STREET_NAME
Definition:
CustomerAddress.php:22
Commercetools\Import\Models\Customers\CustomerAddress\setEmail
setEmail(?string $email)
Commercetools\Import\Models\Customers\CustomerAddress\getRegion
getRegion()
Commercetools\Import\Models\Customers\CustomerAddress\getCountry
getCountry()
Commercetools\Import\Models\Customers\CustomerAddress\setCity
setCity(?string $city)
Commercetools\Import\Models\Customfields\Custom
Definition:
Custom.php:16
Commercetools\Import\Models\Customers
Definition:
CustomerAddress.php:9
Generated by
1.9.1