commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
PendingOperationErrorModel.php
1 <?php
2 
3 declare(strict_types=1);
10 
15 use stdClass;
16 
21 {
22  public const DISCRIMINATOR_VALUE = 'PendingOperation';
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 
71  public function getMessage()
72  {
73  if (is_null($this->message)) {
75  $data = $this->raw(self::FIELD_MESSAGE);
76  if (is_null($data)) {
77  return null;
78  }
79  $this->message = (string) $data;
80  }
81 
82  return $this->message;
83  }
84 
85 
89  public function setMessage(?string $message): void
90  {
91  $this->message = $message;
92  }
93 
97  public function by(string $key)
98  {
99  $data = $this->raw($key);
100  if (is_null($data)) {
101  return null;
102  }
103 
104  return $data;
105  }
106 }