File "BatchDeleteCatalogObjectsResponse.php"

Full Path: /home/capoeirajd/www/wp-content/plugins/wpforms-lite/vendor_prefixed/square/square/src/Models/BatchDeleteCatalogObjectsResponse.php
File size: 2.87 KB
MIME-type: text/x-php
Charset: utf-8

<?php

declare (strict_types=1);
namespace WPForms\Vendor\Square\Models;

use stdClass;
class BatchDeleteCatalogObjectsResponse implements \JsonSerializable
{
    /**
     * @var Error[]|null
     */
    private $errors;
    /**
     * @var string[]|null
     */
    private $deletedObjectIds;
    /**
     * @var string|null
     */
    private $deletedAt;
    /**
     * Returns Errors.
     * Any errors that occurred during the request.
     *
     * @return Error[]|null
     */
    public function getErrors() : ?array
    {
        return $this->errors;
    }
    /**
     * Sets Errors.
     * Any errors that occurred during the request.
     *
     * @maps errors
     *
     * @param Error[]|null $errors
     */
    public function setErrors(?array $errors) : void
    {
        $this->errors = $errors;
    }
    /**
     * Returns Deleted Object Ids.
     * The IDs of all CatalogObjects deleted by this request.
     *
     * @return string[]|null
     */
    public function getDeletedObjectIds() : ?array
    {
        return $this->deletedObjectIds;
    }
    /**
     * Sets Deleted Object Ids.
     * The IDs of all CatalogObjects deleted by this request.
     *
     * @maps deleted_object_ids
     *
     * @param string[]|null $deletedObjectIds
     */
    public function setDeletedObjectIds(?array $deletedObjectIds) : void
    {
        $this->deletedObjectIds = $deletedObjectIds;
    }
    /**
     * Returns Deleted At.
     * The database [timestamp](https://developer.squareup.com/docs/build-basics/working-with-dates) of
     * this deletion in RFC 3339 format, e.g., "2016-09-04T23:59:33.123Z".
     */
    public function getDeletedAt() : ?string
    {
        return $this->deletedAt;
    }
    /**
     * Sets Deleted At.
     * The database [timestamp](https://developer.squareup.com/docs/build-basics/working-with-dates) of
     * this deletion in RFC 3339 format, e.g., "2016-09-04T23:59:33.123Z".
     *
     * @maps deleted_at
     */
    public function setDeletedAt(?string $deletedAt) : void
    {
        $this->deletedAt = $deletedAt;
    }
    /**
     * 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]
    public function jsonSerialize(bool $asArrayWhenEmpty = \false)
    {
        $json = [];
        if (isset($this->errors)) {
            $json['errors'] = $this->errors;
        }
        if (isset($this->deletedObjectIds)) {
            $json['deleted_object_ids'] = $this->deletedObjectIds;
        }
        if (isset($this->deletedAt)) {
            $json['deleted_at'] = $this->deletedAt;
        }
        $json = \array_filter($json, function ($val) {
            return $val !== null;
        });
        return !$asArrayWhenEmpty && empty($json) ? new stdClass() : $json;
    }
}