commercetools-sdk-php-v2  master
The platform, import-api and ml-api PHP sdks generated from our api reference.
RequiredFieldErrorModel.php
1 <?php
2 
3 declare(strict_types=1);
10 
15 use stdClass;
16 
21 {
22  public const DISCRIMINATOR_VALUE = 'RequiredField';
27  protected $code;
28 
33  protected $message;
34 
39  protected $field;
40 
41 
45  public function __construct(
46  ?string $message = null,
47  ?string $field = null,
48  ?string $code = null
49  ) {
50  $this->message = $message;
51  $this->field = $field;
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 
97  public function getField()
98  {
99  if (is_null($this->field)) {
101  $data = $this->raw(self::FIELD_FIELD);
102  if (is_null($data)) {
103  return null;
104  }
105  $this->field = (string) $data;
106  }
107 
108  return $this->field;
109  }
110 
111 
115  public function setMessage(?string $message): void
116  {
117  $this->message = $message;
118  }
119 
123  public function setField(?string $field): void
124  {
125  $this->field = $field;
126  }
127 }
__construct(?string $message=null, ?string $field=null, ?string $code=null)