File "ListOrderCustomAttributesResponseBuilder.php"
Full Path: /home/capoeirajd/www/wp-content/plugins/wpforms-lite/vendor_prefixed/square/square/src/Models/Builders/ListOrderCustomAttributesResponseBuilder.php
File size: 1.71 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\CustomAttribute;
use WPForms\Vendor\Square\Models\Error;
use WPForms\Vendor\Square\Models\ListOrderCustomAttributesResponse;
/**
* Builder for model ListOrderCustomAttributesResponse
*
* @see ListOrderCustomAttributesResponse
*/
class ListOrderCustomAttributesResponseBuilder
{
/**
* @var ListOrderCustomAttributesResponse
*/
private $instance;
private function __construct(ListOrderCustomAttributesResponse $instance)
{
$this->instance = $instance;
}
/**
* Initializes a new List Order Custom Attributes Response Builder object.
*/
public static function init() : self
{
return new self(new ListOrderCustomAttributesResponse());
}
/**
* Sets custom attributes field.
*
* @param CustomAttribute[]|null $value
*/
public function customAttributes(?array $value) : self
{
$this->instance->setCustomAttributes($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 Order Custom Attributes Response object.
*/
public function build() : ListOrderCustomAttributesResponse
{
return CoreHelper::clone($this->instance);
}
}