commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
GraphQLResponseModel.php
1 <?php
2 
3 declare(strict_types=1);
10 
15 use stdClass;
16 
21 {
26  protected $data;
27 
32  protected $errors;
33 
34 
38  public function __construct(
39  $data = null,
41  ) {
42  $this->data = $data;
43  $this->errors = $errors;
44  }
45 
50  public function getData()
51  {
52  if (is_null($this->data)) {
54  $data = $this->raw(self::FIELD_DATA);
55  if (is_null($data)) {
56  return null;
57  }
58  $this->data = $data;
59  }
60 
61  return $this->data;
62  }
63 
68  public function getErrors()
69  {
70  if (is_null($this->errors)) {
72  $data = $this->raw(self::FIELD_ERRORS);
73  if (is_null($data)) {
74  return null;
75  }
77  }
78 
79  return $this->errors;
80  }
81 
82 
86  public function setData($data): void
87  {
88  $this->data = $data;
89  }
90 
94  public function setErrors(?GraphQLErrorCollection $errors): void
95  {
96  $this->errors = $errors;
97  }
98 }
__construct( $data=null, ?GraphQLErrorCollection $errors=null)