commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
InvalidSubjectErrorModel.php
1 <?php
2 
3 declare(strict_types=1);
10 
15 use stdClass;
16 
21 {
22  public const DISCRIMINATOR_VALUE = 'InvalidSubject';
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 
53  public function getCode()
54  {
55  if (is_null($this->code)) {
57  $data = $this->raw(self::FIELD_CODE);
58  if (is_null($data)) {
59  return null;
60  }
61  $this->code = (string) $data;
62  }
63 
64  return $this->code;
65  }
66 
73  public function getMessage()
74  {
75  if (is_null($this->message)) {
77  $data = $this->raw(self::FIELD_MESSAGE);
78  if (is_null($data)) {
79  return null;
80  }
81  $this->message = (string) $data;
82  }
83 
84  return $this->message;
85  }
86 
87 
91  public function setMessage(?string $message): void
92  {
93  $this->message = $message;
94  }
95 
99  public function by(string $key)
100  {
101  $data = $this->raw($key);
102  if (is_null($data)) {
103  return null;
104  }
105 
106  return $data;
107  }
108 }
__construct(?string $message=null, ?string $code=null)