File: /home/xedaptot/ai.naniguide.com/vendor/square/square/src/Models/BulkUpdateVendorsResponse.php
<?php
declare(strict_types=1);
namespace Square\Models;
use stdClass;
/**
* Represents an output from a call to [BulkUpdateVendors]($e/Vendors/BulkUpdateVendors).
*/
class BulkUpdateVendorsResponse implements \JsonSerializable
{
/**
* @var Error[]|null
*/
private $errors;
/**
* @var array<string,UpdateVendorResponse>|null
*/
private $responses;
/**
* Returns Errors.
* Errors encountered when the request fails.
*
* @return Error[]|null
*/
public function getErrors(): ?array
{
return $this->errors;
}
/**
* Sets Errors.
* Errors encountered when the request fails.
*
* @maps errors
*
* @param Error[]|null $errors
*/
public function setErrors(?array $errors): void
{
$this->errors = $errors;
}
/**
* Returns Responses.
* A set of [UpdateVendorResponse](entity:UpdateVendorResponse) objects encapsulating successfully
* created [Vendor](entity:Vendor)
* objects or error responses for failed attempts. The set is represented by a collection of `Vendor`-
* ID/`UpdateVendorResponse`-object or
* `Vendor`-ID/error-object pairs.
*
* @return array<string,UpdateVendorResponse>|null
*/
public function getResponses(): ?array
{
return $this->responses;
}
/**
* Sets Responses.
* A set of [UpdateVendorResponse](entity:UpdateVendorResponse) objects encapsulating successfully
* created [Vendor](entity:Vendor)
* objects or error responses for failed attempts. The set is represented by a collection of `Vendor`-
* ID/`UpdateVendorResponse`-object or
* `Vendor`-ID/error-object pairs.
*
* @maps responses
*
* @param array<string,UpdateVendorResponse>|null $responses
*/
public function setResponses(?array $responses): void
{
$this->responses = $responses;
}
/**
* Encode this object to JSON
*
* @param bool $asArrayWhenEmpty Whether to serialize this model as an array whenever no fields
* are set. (default: false)
*
* @return array|stdClass
*/
#[\ReturnTypeWillChange] // @phan-suppress-current-line PhanUndeclaredClassAttribute for (php < 8.1)
public function jsonSerialize(bool $asArrayWhenEmpty = false)
{
$json = [];
if (isset($this->errors)) {
$json['errors'] = $this->errors;
}
if (isset($this->responses)) {
$json['responses'] = $this->responses;
}
$json = array_filter($json, function ($val) {
return $val !== null;
});
return (!$asArrayWhenEmpty && empty($json)) ? new stdClass() : $json;
}
}