commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
Toggle main menu visibility
Main Page
Related Pages
Namespaces
Namespace List
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
z
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
v
w
z
Variables
$
a
d
e
f
g
o
r
s
t
u
•
All
Classes
Namespaces
Functions
Variables
Pages
Loading...
Searching...
No Matches
lib
commercetools-api
src
Models
Customer
CustomerGroupAssignmentBuilder.php
1
<?php
2
3
declare(strict_types=1);
9
namespace
Commercetools\Api\Models\Customer
;
10
11
use
Commercetools\Api\Models\CustomerGroup\CustomerGroupReference
;
12
use
Commercetools\Api\Models\CustomerGroup\CustomerGroupReferenceBuilder
;
13
use
Commercetools\Base\Builder
;
14
use
Commercetools\Base\DateTimeImmutableCollection
;
15
use
Commercetools\Base\JsonObject
;
16
use
Commercetools\Base\JsonObjectModel
;
17
use
Commercetools\Base\MapperFactory
;
18
use stdClass;
19
23
final
class
CustomerGroupAssignmentBuilder
implements
Builder
24
{
29
private
$customerGroup;
30
37
public
function
getCustomerGroup
()
38
{
39
return
$this->customerGroup instanceof
CustomerGroupReferenceBuilder
? $this->customerGroup->
build
() : $this->customerGroup;
40
}
37
public
function
getCustomerGroup
() {
…
}
41
46
public
function
withCustomerGroup
(?
CustomerGroupReference
$customerGroup)
47
{
48
$this->customerGroup = $customerGroup;
49
50
return
$this;
51
}
46
public
function
withCustomerGroup
(?
CustomerGroupReference
$customerGroup) {
…
}
52
57
public
function
withCustomerGroupBuilder
(?
CustomerGroupReferenceBuilder
$customerGroup)
58
{
59
$this->customerGroup = $customerGroup;
60
61
return
$this;
62
}
57
public
function
withCustomerGroupBuilder
(?
CustomerGroupReferenceBuilder
$customerGroup) {
…
}
63
64
public
function
build
():
CustomerGroupAssignment
65
{
66
return
new
CustomerGroupAssignmentModel
(
67
$this->customerGroup instanceof
CustomerGroupReferenceBuilder
? $this->customerGroup->
build
() : $this->customerGroup
68
);
69
}
64
public
function
build
():
CustomerGroupAssignment
{
…
}
70
71
public
static
function
of
():
CustomerGroupAssignmentBuilder
72
{
73
return
new
self
();
74
}
71
public
static
function
of
():
CustomerGroupAssignmentBuilder
{
…
}
75
}
23
final
class
CustomerGroupAssignmentBuilder
implements
Builder
{
…
};
Commercetools\Api\Models\Customer\CustomerGroupAssignmentBuilder
Definition
CustomerGroupAssignmentBuilder.php:24
Commercetools\Api\Models\Customer\CustomerGroupAssignmentBuilder\build
build()
Definition
CustomerGroupAssignmentBuilder.php:64
Commercetools\Api\Models\Customer\CustomerGroupAssignmentBuilder\getCustomerGroup
getCustomerGroup()
Definition
CustomerGroupAssignmentBuilder.php:37
Commercetools\Api\Models\Customer\CustomerGroupAssignmentBuilder\withCustomerGroupBuilder
withCustomerGroupBuilder(?CustomerGroupReferenceBuilder $customerGroup)
Definition
CustomerGroupAssignmentBuilder.php:57
Commercetools\Api\Models\Customer\CustomerGroupAssignmentBuilder\of
static of()
Definition
CustomerGroupAssignmentBuilder.php:71
Commercetools\Api\Models\Customer\CustomerGroupAssignmentBuilder\withCustomerGroup
withCustomerGroup(?CustomerGroupReference $customerGroup)
Definition
CustomerGroupAssignmentBuilder.php:46
Commercetools\Api\Models\Customer\CustomerGroupAssignmentModel
Definition
CustomerGroupAssignmentModel.php:23
Commercetools\Api\Models\CustomerGroup\CustomerGroupReferenceBuilder
Definition
CustomerGroupReferenceBuilder.php:24
Commercetools\Api\Models\CustomerGroup\CustomerGroupReferenceBuilder\build
build()
Definition
CustomerGroupReferenceBuilder.php:92
Commercetools\Base\DateTimeImmutableCollection
Definition
DateTimeImmutableCollection.php:21
Commercetools\Base\JsonObjectModel
Definition
JsonObjectModel.php:15
Commercetools\Base\MapperFactory
Definition
MapperFactory.php:16
Commercetools\Api\Models\Customer\CustomerGroupAssignment
Definition
CustomerGroupAssignment.php:16
Commercetools\Api\Models\CustomerGroup\CustomerGroupReference
Definition
CustomerGroupReference.php:16
Commercetools\Base\Builder
Definition
Builder.php:16
Commercetools\Base\JsonObject
Definition
JsonObject.php:15
Commercetools\Api\Models\Customer
Definition
Customer.php:9
Generated by
1.9.8