File "ListMerchantCustomAttributeDefinitionsResponseBuilder.php"

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

<?php

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

use WPForms\Vendor\Core\Utils\CoreHelper;
use WPForms\Vendor\Square\Models\CustomAttributeDefinition;
use WPForms\Vendor\Square\Models\Error;
use WPForms\Vendor\Square\Models\ListMerchantCustomAttributeDefinitionsResponse;
/**
 * Builder for model ListMerchantCustomAttributeDefinitionsResponse
 *
 * @see ListMerchantCustomAttributeDefinitionsResponse
 */
class ListMerchantCustomAttributeDefinitionsResponseBuilder
{
    /**
     * @var ListMerchantCustomAttributeDefinitionsResponse
     */
    private $instance;
    private function __construct(ListMerchantCustomAttributeDefinitionsResponse $instance)
    {
        $this->instance = $instance;
    }
    /**
     * Initializes a new List Merchant Custom Attribute Definitions Response Builder object.
     */
    public static function init() : self
    {
        return new self(new ListMerchantCustomAttributeDefinitionsResponse());
    }
    /**
     * Sets custom attribute definitions field.
     *
     * @param CustomAttributeDefinition[]|null $value
     */
    public function customAttributeDefinitions(?array $value) : self
    {
        $this->instance->setCustomAttributeDefinitions($value);
        return $this;
    }
    /**
     * Sets cursor field.
     *
     * @param string|null $value
     */
    public function cursor(?string $value) : self
    {
        $this->instance->setCursor($value);
        return $this;
    }
    /**
     * Sets errors field.
     *
     * @param Error[]|null $value
     */
    public function errors(?array $value) : self
    {
        $this->instance->setErrors($value);
        return $this;
    }
    /**
     * Initializes a new List Merchant Custom Attribute Definitions Response object.
     */
    public function build() : ListMerchantCustomAttributeDefinitionsResponse
    {
        return CoreHelper::clone($this->instance);
    }
}