whoami7 - Manager
:
/
home
/
qbizpnmr
/
arif.umairtax.com
/
vendor
/
square
/
square
/
src
/
Models
/
Upload File:
files >> /home/qbizpnmr/arif.umairtax.com/vendor/square/square/src/Models/CashDrawerShiftSummary.php
<?php declare(strict_types=1); namespace Square\Models; use stdClass; /** * The summary of a closed cash drawer shift. * This model contains only the money counted to start a cash drawer shift, counted * at the end of the shift, and the amount that should be in the drawer at shift * end based on summing all cash drawer shift events. */ class CashDrawerShiftSummary implements \JsonSerializable { /** * @var string|null */ private $id; /** * @var string|null */ private $state; /** * @var array */ private $openedAt = []; /** * @var array */ private $endedAt = []; /** * @var array */ private $closedAt = []; /** * @var array */ private $description = []; /** * @var Money|null */ private $openedCashMoney; /** * @var Money|null */ private $expectedCashMoney; /** * @var Money|null */ private $closedCashMoney; /** * @var string|null */ private $createdAt; /** * @var string|null */ private $updatedAt; /** * @var string|null */ private $locationId; /** * Returns Id. * The shift unique ID. */ public function getId(): ?string { return $this->id; } /** * Sets Id. * The shift unique ID. * * @maps id */ public function setId(?string $id): void { $this->id = $id; } /** * Returns State. * The current state of a cash drawer shift. */ public function getState(): ?string { return $this->state; } /** * Sets State. * The current state of a cash drawer shift. * * @maps state */ public function setState(?string $state): void { $this->state = $state; } /** * Returns Opened At. * The shift start time in ISO 8601 format. */ public function getOpenedAt(): ?string { if (count($this->openedAt) == 0) { return null; } return $this->openedAt['value']; } /** * Sets Opened At. * The shift start time in ISO 8601 format. * * @maps opened_at */ public function setOpenedAt(?string $openedAt): void { $this->openedAt['value'] = $openedAt; } /** * Unsets Opened At. * The shift start time in ISO 8601 format. */ public function unsetOpenedAt(): void { $this->openedAt = []; } /** * Returns Ended At. * The shift end time in ISO 8601 format. */ public function getEndedAt(): ?string { if (count($this->endedAt) == 0) { return null; } return $this->endedAt['value']; } /** * Sets Ended At. * The shift end time in ISO 8601 format. * * @maps ended_at */ public function setEndedAt(?string $endedAt): void { $this->endedAt['value'] = $endedAt; } /** * Unsets Ended At. * The shift end time in ISO 8601 format. */ public function unsetEndedAt(): void { $this->endedAt = []; } /** * Returns Closed At. * The shift close time in ISO 8601 format. */ public function getClosedAt(): ?string { if (count($this->closedAt) == 0) { return null; } return $this->closedAt['value']; } /** * Sets Closed At. * The shift close time in ISO 8601 format. * * @maps closed_at */ public function setClosedAt(?string $closedAt): void { $this->closedAt['value'] = $closedAt; } /** * Unsets Closed At. * The shift close time in ISO 8601 format. */ public function unsetClosedAt(): void { $this->closedAt = []; } /** * Returns Description. * An employee free-text description of a cash drawer shift. */ public function getDescription(): ?string { if (count($this->description) == 0) { return null; } return $this->description['value']; } /** * Sets Description. * An employee free-text description of a cash drawer shift. * * @maps description */ public function setDescription(?string $description): void { $this->description['value'] = $description; } /** * Unsets Description. * An employee free-text description of a cash drawer shift. */ public function unsetDescription(): void { $this->description = []; } /** * Returns Opened Cash Money. * Represents an amount of money. `Money` fields can be signed or unsigned. * Fields that do not explicitly define whether they are signed or unsigned are * considered unsigned and can only hold positive amounts. For signed fields, the * sign of the value indicates the purpose of the money transfer. See * [Working with Monetary Amounts](https://developer.squareup.com/docs/build-basics/working-with- * monetary-amounts) * for more information. */ public function getOpenedCashMoney(): ?Money { return $this->openedCashMoney; } /** * Sets Opened Cash Money. * Represents an amount of money. `Money` fields can be signed or unsigned. * Fields that do not explicitly define whether they are signed or unsigned are * considered unsigned and can only hold positive amounts. For signed fields, the * sign of the value indicates the purpose of the money transfer. See * [Working with Monetary Amounts](https://developer.squareup.com/docs/build-basics/working-with- * monetary-amounts) * for more information. * * @maps opened_cash_money */ public function setOpenedCashMoney(?Money $openedCashMoney): void { $this->openedCashMoney = $openedCashMoney; } /** * Returns Expected Cash Money. * Represents an amount of money. `Money` fields can be signed or unsigned. * Fields that do not explicitly define whether they are signed or unsigned are * considered unsigned and can only hold positive amounts. For signed fields, the * sign of the value indicates the purpose of the money transfer. See * [Working with Monetary Amounts](https://developer.squareup.com/docs/build-basics/working-with- * monetary-amounts) * for more information. */ public function getExpectedCashMoney(): ?Money { return $this->expectedCashMoney; } /** * Sets Expected Cash Money. * Represents an amount of money. `Money` fields can be signed or unsigned. * Fields that do not explicitly define whether they are signed or unsigned are * considered unsigned and can only hold positive amounts. For signed fields, the * sign of the value indicates the purpose of the money transfer. See * [Working with Monetary Amounts](https://developer.squareup.com/docs/build-basics/working-with- * monetary-amounts) * for more information. * * @maps expected_cash_money */ public function setExpectedCashMoney(?Money $expectedCashMoney): void { $this->expectedCashMoney = $expectedCashMoney; } /** * Returns Closed Cash Money. * Represents an amount of money. `Money` fields can be signed or unsigned. * Fields that do not explicitly define whether they are signed or unsigned are * considered unsigned and can only hold positive amounts. For signed fields, the * sign of the value indicates the purpose of the money transfer. See * [Working with Monetary Amounts](https://developer.squareup.com/docs/build-basics/working-with- * monetary-amounts) * for more information. */ public function getClosedCashMoney(): ?Money { return $this->closedCashMoney; } /** * Sets Closed Cash Money. * Represents an amount of money. `Money` fields can be signed or unsigned. * Fields that do not explicitly define whether they are signed or unsigned are * considered unsigned and can only hold positive amounts. For signed fields, the * sign of the value indicates the purpose of the money transfer. See * [Working with Monetary Amounts](https://developer.squareup.com/docs/build-basics/working-with- * monetary-amounts) * for more information. * * @maps closed_cash_money */ public function setClosedCashMoney(?Money $closedCashMoney): void { $this->closedCashMoney = $closedCashMoney; } /** * Returns Created At. * The shift start time in RFC 3339 format. */ public function getCreatedAt(): ?string { return $this->createdAt; } /** * Sets Created At. * The shift start time in RFC 3339 format. * * @maps created_at */ public function setCreatedAt(?string $createdAt): void { $this->createdAt = $createdAt; } /** * Returns Updated At. * The shift updated at time in RFC 3339 format. */ public function getUpdatedAt(): ?string { return $this->updatedAt; } /** * Sets Updated At. * The shift updated at time in RFC 3339 format. * * @maps updated_at */ public function setUpdatedAt(?string $updatedAt): void { $this->updatedAt = $updatedAt; } /** * Returns Location Id. * The ID of the location the cash drawer shift belongs to. */ public function getLocationId(): ?string { return $this->locationId; } /** * Sets Location Id. * The ID of the location the cash drawer shift belongs to. * * @maps location_id */ public function setLocationId(?string $locationId): void { $this->locationId = $locationId; } /** * 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] // @phan-suppress-current-line PhanUndeclaredClassAttribute for (php < 8.1) public function jsonSerialize(bool $asArrayWhenEmpty = false) { $json = []; if (isset($this->id)) { $json['id'] = $this->id; } if (isset($this->state)) { $json['state'] = $this->state; } if (!empty($this->openedAt)) { $json['opened_at'] = $this->openedAt['value']; } if (!empty($this->endedAt)) { $json['ended_at'] = $this->endedAt['value']; } if (!empty($this->closedAt)) { $json['closed_at'] = $this->closedAt['value']; } if (!empty($this->description)) { $json['description'] = $this->description['value']; } if (isset($this->openedCashMoney)) { $json['opened_cash_money'] = $this->openedCashMoney; } if (isset($this->expectedCashMoney)) { $json['expected_cash_money'] = $this->expectedCashMoney; } if (isset($this->closedCashMoney)) { $json['closed_cash_money'] = $this->closedCashMoney; } if (isset($this->createdAt)) { $json['created_at'] = $this->createdAt; } if (isset($this->updatedAt)) { $json['updated_at'] = $this->updatedAt; } if (isset($this->locationId)) { $json['location_id'] = $this->locationId; } $json = array_filter($json, function ($val) { return $val !== null; }); return (!$asArrayWhenEmpty && empty($json)) ? new stdClass() : $json; } }
Copyright ©2021 || Defacer Indonesia