File "BulkUpsertLocationCustomAttributesResponseLocationCustomAttributeUpsertResponseBuilder.php"
Full Path: /home/stylijtl/public_html/wp-content/plugins/wpforms-lite/vendor_prefixed/square/square/src/Models/Builders/BulkUpsertLocationCustomAttributesResponseLocationCustomAttributeUpsertResponseBuilder.php
File size: 2.2 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\BulkUpsertLocationCustomAttributesResponseLocationCustomAttributeUpsertResponse;
use WPForms\Vendor\Square\Models\CustomAttribute;
use WPForms\Vendor\Square\Models\Error;
/**
* Builder for model BulkUpsertLocationCustomAttributesResponseLocationCustomAttributeUpsertResponse
*
* @see BulkUpsertLocationCustomAttributesResponseLocationCustomAttributeUpsertResponse
*/
class BulkUpsertLocationCustomAttributesResponseLocationCustomAttributeUpsertResponseBuilder
{
/**
* @var BulkUpsertLocationCustomAttributesResponseLocationCustomAttributeUpsertResponse
*/
private $instance;
private function __construct(BulkUpsertLocationCustomAttributesResponseLocationCustomAttributeUpsertResponse $instance)
{
$this->instance = $instance;
}
/**
* Initializes a new Bulk Upsert Location Custom Attributes Response Location Custom Attribute Upsert
* Response Builder object.
*/
public static function init() : self
{
return new self(new BulkUpsertLocationCustomAttributesResponseLocationCustomAttributeUpsertResponse());
}
/**
* Sets location id field.
*
* @param string|null $value
*/
public function locationId(?string $value) : self
{
$this->instance->setLocationId($value);
return $this;
}
/**
* Sets custom attribute field.
*
* @param CustomAttribute|null $value
*/
public function customAttribute(?CustomAttribute $value) : self
{
$this->instance->setCustomAttribute($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 Bulk Upsert Location Custom Attributes Response Location Custom Attribute Upsert
* Response object.
*/
public function build() : BulkUpsertLocationCustomAttributesResponseLocationCustomAttributeUpsertResponse
{
return CoreHelper::clone($this->instance);
}
}