File "InventoryPhysicalCount.php"
Full Path: /home/capoeirajd/www/wp-content/plugins/wpforms-lite/vendor_prefixed/square/square/src/Models/InventoryPhysicalCount.php
File size: 13.39 KB
MIME-type: text/x-php
Charset: utf-8
<?php
declare (strict_types=1);
namespace WPForms\Vendor\Square\Models;
use stdClass;
/**
* Represents the quantity of an item variation that is physically present
* at a specific location, verified by a seller or a seller's employee. For example,
* a physical count might come from an employee counting the item variations on
* hand or from syncing with an external system.
*/
class InventoryPhysicalCount implements \JsonSerializable
{
/**
* @var string|null
*/
private $id;
/**
* @var array
*/
private $referenceId = [];
/**
* @var array
*/
private $catalogObjectId = [];
/**
* @var array
*/
private $catalogObjectType = [];
/**
* @var string|null
*/
private $state;
/**
* @var array
*/
private $locationId = [];
/**
* @var array
*/
private $quantity = [];
/**
* @var SourceApplication|null
*/
private $source;
/**
* @var array
*/
private $employeeId = [];
/**
* @var array
*/
private $teamMemberId = [];
/**
* @var array
*/
private $occurredAt = [];
/**
* @var string|null
*/
private $createdAt;
/**
* Returns Id.
* A unique Square-generated ID for the
* [InventoryPhysicalCount](entity:InventoryPhysicalCount).
*/
public function getId() : ?string
{
return $this->id;
}
/**
* Sets Id.
* A unique Square-generated ID for the
* [InventoryPhysicalCount](entity:InventoryPhysicalCount).
*
* @maps id
*/
public function setId(?string $id) : void
{
$this->id = $id;
}
/**
* Returns Reference Id.
* An optional ID provided by the application to tie the
* [InventoryPhysicalCount](entity:InventoryPhysicalCount) to an external
* system.
*/
public function getReferenceId() : ?string
{
if (\count($this->referenceId) == 0) {
return null;
}
return $this->referenceId['value'];
}
/**
* Sets Reference Id.
* An optional ID provided by the application to tie the
* [InventoryPhysicalCount](entity:InventoryPhysicalCount) to an external
* system.
*
* @maps reference_id
*/
public function setReferenceId(?string $referenceId) : void
{
$this->referenceId['value'] = $referenceId;
}
/**
* Unsets Reference Id.
* An optional ID provided by the application to tie the
* [InventoryPhysicalCount](entity:InventoryPhysicalCount) to an external
* system.
*/
public function unsetReferenceId() : void
{
$this->referenceId = [];
}
/**
* Returns Catalog Object Id.
* The Square-generated ID of the
* [CatalogObject](entity:CatalogObject) being tracked.
*/
public function getCatalogObjectId() : ?string
{
if (\count($this->catalogObjectId) == 0) {
return null;
}
return $this->catalogObjectId['value'];
}
/**
* Sets Catalog Object Id.
* The Square-generated ID of the
* [CatalogObject](entity:CatalogObject) being tracked.
*
* @maps catalog_object_id
*/
public function setCatalogObjectId(?string $catalogObjectId) : void
{
$this->catalogObjectId['value'] = $catalogObjectId;
}
/**
* Unsets Catalog Object Id.
* The Square-generated ID of the
* [CatalogObject](entity:CatalogObject) being tracked.
*/
public function unsetCatalogObjectId() : void
{
$this->catalogObjectId = [];
}
/**
* Returns Catalog Object Type.
* The [type](entity:CatalogObjectType) of the [CatalogObject](entity:CatalogObject) being tracked.
*
* The Inventory API supports setting and reading the `"catalog_object_type": "ITEM_VARIATION"` field
* value.
* In addition, it can also read the `"catalog_object_type": "ITEM"` field value that is set by the
* Square Restaurants app.
*/
public function getCatalogObjectType() : ?string
{
if (\count($this->catalogObjectType) == 0) {
return null;
}
return $this->catalogObjectType['value'];
}
/**
* Sets Catalog Object Type.
* The [type](entity:CatalogObjectType) of the [CatalogObject](entity:CatalogObject) being tracked.
*
* The Inventory API supports setting and reading the `"catalog_object_type": "ITEM_VARIATION"` field
* value.
* In addition, it can also read the `"catalog_object_type": "ITEM"` field value that is set by the
* Square Restaurants app.
*
* @maps catalog_object_type
*/
public function setCatalogObjectType(?string $catalogObjectType) : void
{
$this->catalogObjectType['value'] = $catalogObjectType;
}
/**
* Unsets Catalog Object Type.
* The [type](entity:CatalogObjectType) of the [CatalogObject](entity:CatalogObject) being tracked.
*
* The Inventory API supports setting and reading the `"catalog_object_type": "ITEM_VARIATION"` field
* value.
* In addition, it can also read the `"catalog_object_type": "ITEM"` field value that is set by the
* Square Restaurants app.
*/
public function unsetCatalogObjectType() : void
{
$this->catalogObjectType = [];
}
/**
* Returns State.
* Indicates the state of a tracked item quantity in the lifecycle of goods.
*/
public function getState() : ?string
{
return $this->state;
}
/**
* Sets State.
* Indicates the state of a tracked item quantity in the lifecycle of goods.
*
* @maps state
*/
public function setState(?string $state) : void
{
$this->state = $state;
}
/**
* Returns Location Id.
* The Square-generated ID of the [Location](entity:Location) where the related
* quantity of items is being tracked.
*/
public function getLocationId() : ?string
{
if (\count($this->locationId) == 0) {
return null;
}
return $this->locationId['value'];
}
/**
* Sets Location Id.
* The Square-generated ID of the [Location](entity:Location) where the related
* quantity of items is being tracked.
*
* @maps location_id
*/
public function setLocationId(?string $locationId) : void
{
$this->locationId['value'] = $locationId;
}
/**
* Unsets Location Id.
* The Square-generated ID of the [Location](entity:Location) where the related
* quantity of items is being tracked.
*/
public function unsetLocationId() : void
{
$this->locationId = [];
}
/**
* Returns Quantity.
* The number of items affected by the physical count as a decimal string.
* The number can support up to 5 digits after the decimal point.
*/
public function getQuantity() : ?string
{
if (\count($this->quantity) == 0) {
return null;
}
return $this->quantity['value'];
}
/**
* Sets Quantity.
* The number of items affected by the physical count as a decimal string.
* The number can support up to 5 digits after the decimal point.
*
* @maps quantity
*/
public function setQuantity(?string $quantity) : void
{
$this->quantity['value'] = $quantity;
}
/**
* Unsets Quantity.
* The number of items affected by the physical count as a decimal string.
* The number can support up to 5 digits after the decimal point.
*/
public function unsetQuantity() : void
{
$this->quantity = [];
}
/**
* Returns Source.
* Represents information about the application used to generate a change.
*/
public function getSource() : ?SourceApplication
{
return $this->source;
}
/**
* Sets Source.
* Represents information about the application used to generate a change.
*
* @maps source
*/
public function setSource(?SourceApplication $source) : void
{
$this->source = $source;
}
/**
* Returns Employee Id.
* The Square-generated ID of the [Employee](entity:Employee) responsible for the
* physical count.
*/
public function getEmployeeId() : ?string
{
if (\count($this->employeeId) == 0) {
return null;
}
return $this->employeeId['value'];
}
/**
* Sets Employee Id.
* The Square-generated ID of the [Employee](entity:Employee) responsible for the
* physical count.
*
* @maps employee_id
*/
public function setEmployeeId(?string $employeeId) : void
{
$this->employeeId['value'] = $employeeId;
}
/**
* Unsets Employee Id.
* The Square-generated ID of the [Employee](entity:Employee) responsible for the
* physical count.
*/
public function unsetEmployeeId() : void
{
$this->employeeId = [];
}
/**
* Returns Team Member Id.
* The Square-generated ID of the [Team Member](entity:TeamMember) responsible for the
* physical count.
*/
public function getTeamMemberId() : ?string
{
if (\count($this->teamMemberId) == 0) {
return null;
}
return $this->teamMemberId['value'];
}
/**
* Sets Team Member Id.
* The Square-generated ID of the [Team Member](entity:TeamMember) responsible for the
* physical count.
*
* @maps team_member_id
*/
public function setTeamMemberId(?string $teamMemberId) : void
{
$this->teamMemberId['value'] = $teamMemberId;
}
/**
* Unsets Team Member Id.
* The Square-generated ID of the [Team Member](entity:TeamMember) responsible for the
* physical count.
*/
public function unsetTeamMemberId() : void
{
$this->teamMemberId = [];
}
/**
* Returns Occurred At.
* A client-generated RFC 3339-formatted timestamp that indicates when
* the physical count was examined. For physical count updates, the `occurred_at`
* timestamp cannot be older than 24 hours or in the future relative to the
* time of the request.
*/
public function getOccurredAt() : ?string
{
if (\count($this->occurredAt) == 0) {
return null;
}
return $this->occurredAt['value'];
}
/**
* Sets Occurred At.
* A client-generated RFC 3339-formatted timestamp that indicates when
* the physical count was examined. For physical count updates, the `occurred_at`
* timestamp cannot be older than 24 hours or in the future relative to the
* time of the request.
*
* @maps occurred_at
*/
public function setOccurredAt(?string $occurredAt) : void
{
$this->occurredAt['value'] = $occurredAt;
}
/**
* Unsets Occurred At.
* A client-generated RFC 3339-formatted timestamp that indicates when
* the physical count was examined. For physical count updates, the `occurred_at`
* timestamp cannot be older than 24 hours or in the future relative to the
* time of the request.
*/
public function unsetOccurredAt() : void
{
$this->occurredAt = [];
}
/**
* Returns Created At.
* An RFC 3339-formatted timestamp that indicates when the physical count is received.
*/
public function getCreatedAt() : ?string
{
return $this->createdAt;
}
/**
* Sets Created At.
* An RFC 3339-formatted timestamp that indicates when the physical count is received.
*
* @maps created_at
*/
public function setCreatedAt(?string $createdAt) : void
{
$this->createdAt = $createdAt;
}
/**
* Encode this object to JSON
*
* @param bool $asArrayWhenEmpty Whether to serialize this model as an array whenever no fields
* are set. (default: false)
*
* @return array|stdClass
*/
#[\ReturnTypeWillChange]
public function jsonSerialize(bool $asArrayWhenEmpty = \false)
{
$json = [];
if (isset($this->id)) {
$json['id'] = $this->id;
}
if (!empty($this->referenceId)) {
$json['reference_id'] = $this->referenceId['value'];
}
if (!empty($this->catalogObjectId)) {
$json['catalog_object_id'] = $this->catalogObjectId['value'];
}
if (!empty($this->catalogObjectType)) {
$json['catalog_object_type'] = $this->catalogObjectType['value'];
}
if (isset($this->state)) {
$json['state'] = $this->state;
}
if (!empty($this->locationId)) {
$json['location_id'] = $this->locationId['value'];
}
if (!empty($this->quantity)) {
$json['quantity'] = $this->quantity['value'];
}
if (isset($this->source)) {
$json['source'] = $this->source;
}
if (!empty($this->employeeId)) {
$json['employee_id'] = $this->employeeId['value'];
}
if (!empty($this->teamMemberId)) {
$json['team_member_id'] = $this->teamMemberId['value'];
}
if (!empty($this->occurredAt)) {
$json['occurred_at'] = $this->occurredAt['value'];
}
if (isset($this->createdAt)) {
$json['created_at'] = $this->createdAt;
}
$json = \array_filter($json, function ($val) {
return $val !== null;
});
return !$asArrayWhenEmpty && empty($json) ? new stdClass() : $json;
}
}