commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
All Classes Namespaces Functions Variables Pages
CustomerGroupAssignmentDraftModel.php
1<?php
2
3declare(strict_types=1);
10
17use stdClass;
18
23{
28 protected $customerGroup;
29
30
34 public function __construct(
36 ) {
37 $this->customerGroup = $customerGroup;
38 }
39
46 public function getCustomerGroup()
47 {
48 if (is_null($this->customerGroup)) {
50 $data = $this->raw(self::FIELD_CUSTOMER_GROUP);
51 if (is_null($data)) {
52 return null;
53 }
54
55 $this->customerGroup = CustomerGroupResourceIdentifierModel::of($data);
56 }
57
59 }
60
61
66 {
67 $this->customerGroup = $customerGroup;
68 }
69}