commercetools-sdk-php-v2  master
The platform, import-api and ml-api PHP sdks generated from our api reference.
ShippingMethodKeyReferenceModel.php
1 <?php
2 
3 declare(strict_types=1);
10 
15 use stdClass;
16 
21 {
22  public const DISCRIMINATOR_VALUE = 'shipping-method';
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 
51  public function getKey()
52  {
53  if (is_null($this->key)) {
55  $data = $this->raw(self::FIELD_KEY);
56  if (is_null($data)) {
57  return null;
58  }
59  $this->key = (string) $data;
60  }
61 
62  return $this->key;
63  }
64 
71  public function getTypeId()
72  {
73  if (is_null($this->typeId)) {
75  $data = $this->raw(self::FIELD_TYPE_ID);
76  if (is_null($data)) {
77  return null;
78  }
79  $this->typeId = (string) $data;
80  }
81 
82  return $this->typeId;
83  }
84 
85 
89  public function setKey(?string $key): void
90  {
91  $this->key = $key;
92  }
93 }