File "CreateDeviceCodeResponseBuilder.php"
Full Path: /home/capoeirajd/www/wp-content/plugins/wpforms-lite/vendor_prefixed/square/square/src/Models/Builders/CreateDeviceCodeResponseBuilder.php
File size: 1.39 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\CreateDeviceCodeResponse;
use WPForms\Vendor\Square\Models\DeviceCode;
use WPForms\Vendor\Square\Models\Error;
/**
* Builder for model CreateDeviceCodeResponse
*
* @see CreateDeviceCodeResponse
*/
class CreateDeviceCodeResponseBuilder
{
/**
* @var CreateDeviceCodeResponse
*/
private $instance;
private function __construct(CreateDeviceCodeResponse $instance)
{
$this->instance = $instance;
}
/**
* Initializes a new Create Device Code Response Builder object.
*/
public static function init() : self
{
return new self(new CreateDeviceCodeResponse());
}
/**
* Sets errors field.
*
* @param Error[]|null $value
*/
public function errors(?array $value) : self
{
$this->instance->setErrors($value);
return $this;
}
/**
* Sets device code field.
*
* @param DeviceCode|null $value
*/
public function deviceCode(?DeviceCode $value) : self
{
$this->instance->setDeviceCode($value);
return $this;
}
/**
* Initializes a new Create Device Code Response object.
*/
public function build() : CreateDeviceCodeResponse
{
return CoreHelper::clone($this->instance);
}
}