commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
Loading...
Searching...
No Matches
OrderKeyReferenceModel.php
1<?php
2
3declare(strict_types=1);
10
15use stdClass;
16
21{
22 public const DISCRIMINATOR_VALUE = 'order';
27 protected $key;
28
33 protected $typeId;
34
35
39 public function __construct(
40 ?string $key = null,
41 ?string $typeId = null
42 ) {
43 $this->key = $key;
44 $this->typeId = $typeId ?? self::DISCRIMINATOR_VALUE;
45 }
46
54 public function getKey()
55 {
56 if (is_null($this->key)) {
58 $data = $this->raw(self::FIELD_KEY);
59 if (is_null($data)) {
60 return null;
61 }
62 $this->key = (string) $data;
63 }
64
65 return $this->key;
66 }
67
74 public function getTypeId()
75 {
76 if (is_null($this->typeId)) {
78 $data = $this->raw(self::FIELD_TYPE_ID);
79 if (is_null($data)) {
80 return null;
81 }
82 $this->typeId = (string) $data;
83 }
84
85 return $this->typeId;
86 }
87
88
92 public function setKey(?string $key): void
93 {
94 $this->key = $key;
95 }
96}