File "InventoryPhysicalCountBuilder.php"
Full Path: /home/stylijtl/public_html/wp-content/plugins/wpforms-lite/vendor_prefixed/square/square/src/Models/Builders/InventoryPhysicalCountBuilder.php
File size: 4.91 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\InventoryPhysicalCount;
use WPForms\Vendor\Square\Models\SourceApplication;
/**
* Builder for model InventoryPhysicalCount
*
* @see InventoryPhysicalCount
*/
class InventoryPhysicalCountBuilder
{
/**
* @var InventoryPhysicalCount
*/
private $instance;
private function __construct(InventoryPhysicalCount $instance)
{
$this->instance = $instance;
}
/**
* Initializes a new Inventory Physical Count Builder object.
*/
public static function init() : self
{
return new self(new InventoryPhysicalCount());
}
/**
* Sets id field.
*
* @param string|null $value
*/
public function id(?string $value) : self
{
$this->instance->setId($value);
return $this;
}
/**
* Sets reference id field.
*
* @param string|null $value
*/
public function referenceId(?string $value) : self
{
$this->instance->setReferenceId($value);
return $this;
}
/**
* Unsets reference id field.
*/
public function unsetReferenceId() : self
{
$this->instance->unsetReferenceId();
return $this;
}
/**
* Sets catalog object id field.
*
* @param string|null $value
*/
public function catalogObjectId(?string $value) : self
{
$this->instance->setCatalogObjectId($value);
return $this;
}
/**
* Unsets catalog object id field.
*/
public function unsetCatalogObjectId() : self
{
$this->instance->unsetCatalogObjectId();
return $this;
}
/**
* Sets catalog object type field.
*
* @param string|null $value
*/
public function catalogObjectType(?string $value) : self
{
$this->instance->setCatalogObjectType($value);
return $this;
}
/**
* Unsets catalog object type field.
*/
public function unsetCatalogObjectType() : self
{
$this->instance->unsetCatalogObjectType();
return $this;
}
/**
* Sets state field.
*
* @param string|null $value
*/
public function state(?string $value) : self
{
$this->instance->setState($value);
return $this;
}
/**
* Sets location id field.
*
* @param string|null $value
*/
public function locationId(?string $value) : self
{
$this->instance->setLocationId($value);
return $this;
}
/**
* Unsets location id field.
*/
public function unsetLocationId() : self
{
$this->instance->unsetLocationId();
return $this;
}
/**
* Sets quantity field.
*
* @param string|null $value
*/
public function quantity(?string $value) : self
{
$this->instance->setQuantity($value);
return $this;
}
/**
* Unsets quantity field.
*/
public function unsetQuantity() : self
{
$this->instance->unsetQuantity();
return $this;
}
/**
* Sets source field.
*
* @param SourceApplication|null $value
*/
public function source(?SourceApplication $value) : self
{
$this->instance->setSource($value);
return $this;
}
/**
* Sets employee id field.
*
* @param string|null $value
*/
public function employeeId(?string $value) : self
{
$this->instance->setEmployeeId($value);
return $this;
}
/**
* Unsets employee id field.
*/
public function unsetEmployeeId() : self
{
$this->instance->unsetEmployeeId();
return $this;
}
/**
* Sets team member id field.
*
* @param string|null $value
*/
public function teamMemberId(?string $value) : self
{
$this->instance->setTeamMemberId($value);
return $this;
}
/**
* Unsets team member id field.
*/
public function unsetTeamMemberId() : self
{
$this->instance->unsetTeamMemberId();
return $this;
}
/**
* Sets occurred at field.
*
* @param string|null $value
*/
public function occurredAt(?string $value) : self
{
$this->instance->setOccurredAt($value);
return $this;
}
/**
* Unsets occurred at field.
*/
public function unsetOccurredAt() : self
{
$this->instance->unsetOccurredAt();
return $this;
}
/**
* Sets created at field.
*
* @param string|null $value
*/
public function createdAt(?string $value) : self
{
$this->instance->setCreatedAt($value);
return $this;
}
/**
* Initializes a new Inventory Physical Count object.
*/
public function build() : InventoryPhysicalCount
{
return CoreHelper::clone($this->instance);
}
}