commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
Loading...
Searching...
No Matches
ObjectNotFoundErrorModel.php
1<?php
2
3declare(strict_types=1);
10
15use stdClass;
16
21{
22 public const DISCRIMINATOR_VALUE = 'ObjectNotFound';
27 protected $code;
28
33 protected $message;
34
35
39 public function __construct(
40 ?string $message = null,
41 ?string $code = null
42 ) {
43 $this->message = $message;
44 $this->code = $code ?? self::DISCRIMINATOR_VALUE;
45 }
46
51 public function getCode()
52 {
53 if (is_null($this->code)) {
55 $data = $this->raw(self::FIELD_CODE);
56 if (is_null($data)) {
57 return null;
58 }
59 $this->code = (string) $data;
60 }
61
62 return $this->code;
63 }
64
72 public function getMessage()
73 {
74 if (is_null($this->message)) {
76 $data = $this->raw(self::FIELD_MESSAGE);
77 if (is_null($data)) {
78 return null;
79 }
80 $this->message = (string) $data;
81 }
82
83 return $this->message;
84 }
85
86
90 public function setMessage(?string $message): void
91 {
92 $this->message = $message;
93 }
94
98 public function by(string $key)
99 {
100 $data = $this->raw($key);
101 if (is_null($data)) {
102 return null;
103 }
104
105 return $data;
106 }
107}