commercetools-sdk-php-v2  master
The platform, import-api and ml-api PHP sdks generated from our api reference.
ResourceUpdateErrorModel.php
1 <?php
2 
3 declare(strict_types=1);
10 
15 use stdClass;
16 
21 {
22  public const DISCRIMINATOR_VALUE = 'ResourceUpdate';
27  protected $code;
28 
33  protected $message;
34 
39  protected $resource;
40 
41 
45  public function __construct(
46  ?string $message = null,
47  $resource = null,
48  ?string $code = null
49  ) {
50  $this->message = $message;
51  $this->resource = $resource;
52  $this->code = $code ?? self::DISCRIMINATOR_VALUE;
53  }
54 
59  public function getCode()
60  {
61  if (is_null($this->code)) {
63  $data = $this->raw(self::FIELD_CODE);
64  if (is_null($data)) {
65  return null;
66  }
67  $this->code = (string) $data;
68  }
69 
70  return $this->code;
71  }
72 
77  public function getMessage()
78  {
79  if (is_null($this->message)) {
81  $data = $this->raw(self::FIELD_MESSAGE);
82  if (is_null($data)) {
83  return null;
84  }
85  $this->message = (string) $data;
86  }
87 
88  return $this->message;
89  }
90 
95  public function getResource()
96  {
97  if (is_null($this->resource)) {
99  $data = $this->raw(self::FIELD_RESOURCE);
100  if (is_null($data)) {
101  return null;
102  }
103  $this->resource = $data;
104  }
105 
106  return $this->resource;
107  }
108 
109 
113  public function setMessage(?string $message): void
114  {
115  $this->message = $message;
116  }
117 
121  public function setResource($resource): void
122  {
123  $this->resource = $resource;
124  }
125 }
__construct(?string $message=null, $resource=null, ?string $code=null)