commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
ParcelChangeValueModel.php
1 <?php
2 
3 declare(strict_types=1);
10 
15 use stdClass;
16 
21 {
22 
23 
28  protected $id;
29 
34  protected $createdAt;
35 
36 
40  public function __construct(
41  ?string $id = null,
42  ?string $createdAt = null
43  ) {
44  $this->id = $id;
45  $this->createdAt = $createdAt;
46 
47  }
48 
55  public function getId()
56  {
57  if (is_null($this->id)) {
59  $data = $this->raw(self::FIELD_ID);
60  if (is_null($data)) {
61  return null;
62  }
63  $this->id = (string) $data;
64  }
65 
66  return $this->id;
67  }
68 
75  public function getCreatedAt()
76  {
77  if (is_null($this->createdAt)) {
79  $data = $this->raw(self::FIELD_CREATED_AT);
80  if (is_null($data)) {
81  return null;
82  }
83  $this->createdAt = (string) $data;
84  }
85 
86  return $this->createdAt;
87  }
88 
89 
93  public function setId(?string $id): void
94  {
95  $this->id = $id;
96  }
97 
101  public function setCreatedAt(?string $createdAt): void
102  {
103  $this->createdAt = $createdAt;
104  }
105 
106 
107 
108 }