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