File "RetrieveCustomerCustomAttributeRequestBuilder.php"
Full Path: /home/capoeirajd/www/wp-content/plugins/wpforms-lite/vendor_prefixed/square/square/src/Models/Builders/RetrieveCustomerCustomAttributeRequestBuilder.php
File size: 1.63 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\RetrieveCustomerCustomAttributeRequest;
/**
* Builder for model RetrieveCustomerCustomAttributeRequest
*
* @see RetrieveCustomerCustomAttributeRequest
*/
class RetrieveCustomerCustomAttributeRequestBuilder
{
/**
* @var RetrieveCustomerCustomAttributeRequest
*/
private $instance;
private function __construct(RetrieveCustomerCustomAttributeRequest $instance)
{
$this->instance = $instance;
}
/**
* Initializes a new Retrieve Customer Custom Attribute Request Builder object.
*/
public static function init() : self
{
return new self(new RetrieveCustomerCustomAttributeRequest());
}
/**
* Sets with definition field.
*
* @param bool|null $value
*/
public function withDefinition(?bool $value) : self
{
$this->instance->setWithDefinition($value);
return $this;
}
/**
* Unsets with definition field.
*/
public function unsetWithDefinition() : self
{
$this->instance->unsetWithDefinition();
return $this;
}
/**
* Sets version field.
*
* @param int|null $value
*/
public function version(?int $value) : self
{
$this->instance->setVersion($value);
return $this;
}
/**
* Initializes a new Retrieve Customer Custom Attribute Request object.
*/
public function build() : RetrieveCustomerCustomAttributeRequest
{
return CoreHelper::clone($this->instance);
}
}