File "UpdateMerchantCustomAttributeDefinitionResponseBuilder.php"
Full Path: /home/capoeirajd/www/wp-content/plugins/wpforms-lite/vendor_prefixed/square/square/src/Models/Builders/UpdateMerchantCustomAttributeDefinitionResponseBuilder.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\CustomAttributeDefinition;
use WPForms\Vendor\Square\Models\Error;
use WPForms\Vendor\Square\Models\UpdateMerchantCustomAttributeDefinitionResponse;
/**
* Builder for model UpdateMerchantCustomAttributeDefinitionResponse
*
* @see UpdateMerchantCustomAttributeDefinitionResponse
*/
class UpdateMerchantCustomAttributeDefinitionResponseBuilder
{
/**
* @var UpdateMerchantCustomAttributeDefinitionResponse
*/
private $instance;
private function __construct(UpdateMerchantCustomAttributeDefinitionResponse $instance)
{
$this->instance = $instance;
}
/**
* Initializes a new Update Merchant Custom Attribute Definition Response Builder object.
*/
public static function init() : self
{
return new self(new UpdateMerchantCustomAttributeDefinitionResponse());
}
/**
* Sets custom attribute definition field.
*
* @param CustomAttributeDefinition|null $value
*/
public function customAttributeDefinition(?CustomAttributeDefinition $value) : self
{
$this->instance->setCustomAttributeDefinition($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 Update Merchant Custom Attribute Definition Response object.
*/
public function build() : UpdateMerchantCustomAttributeDefinitionResponse
{
return CoreHelper::clone($this->instance);
}
}