whoami7 - Manager
:
/
home
/
kckglobal
/
www
/
portal
/
vendor
/
square
/
square
/
src
/
Models
/
Upload File:
files >> /home/kckglobal/www/portal/vendor/square/square/src/Models/CashDrawerShiftEvent.php
<?php declare(strict_types=1); namespace Square\Models; use stdClass; class CashDrawerShiftEvent implements \JsonSerializable { /** * @var string|null */ private $id; /** * @var string|null */ private $employeeId; /** * @var string|null */ private $eventType; /** * @var Money|null */ private $eventMoney; /** * @var string|null */ private $createdAt; /** * @var string|null */ private $description; /** * Returns Id. * * The unique ID of the event. */ public function getId(): ?string { return $this->id; } /** * Sets Id. * * The unique ID of the event. * * @maps id */ public function setId(?string $id): void { $this->id = $id; } /** * Returns Employee Id. * * The ID of the employee that created the event. */ public function getEmployeeId(): ?string { return $this->employeeId; } /** * Sets Employee Id. * * The ID of the employee that created the event. * * @maps employee_id */ public function setEmployeeId(?string $employeeId): void { $this->employeeId = $employeeId; } /** * Returns Event Type. * * The types of events on a CashDrawerShift. * Each event type represents an employee action on the actual cash drawer * represented by a CashDrawerShift. */ public function getEventType(): ?string { return $this->eventType; } /** * Sets Event Type. * * The types of events on a CashDrawerShift. * Each event type represents an employee action on the actual cash drawer * represented by a CashDrawerShift. * * @maps event_type */ public function setEventType(?string $eventType): void { $this->eventType = $eventType; } /** * Returns Event 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 getEventMoney(): ?Money { return $this->eventMoney; } /** * Sets Event 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 event_money */ public function setEventMoney(?Money $eventMoney): void { $this->eventMoney = $eventMoney; } /** * Returns Created At. * * The event time in ISO 8601 format. */ public function getCreatedAt(): ?string { return $this->createdAt; } /** * Sets Created At. * * The event time in ISO 8601 format. * * @maps created_at */ public function setCreatedAt(?string $createdAt): void { $this->createdAt = $createdAt; } /** * Returns Description. * * An optional description of the event, entered by the employee that * created the event. */ public function getDescription(): ?string { return $this->description; } /** * Sets Description. * * An optional description of the event, entered by the employee that * created the event. * * @maps description */ public function setDescription(?string $description): void { $this->description = $description; } /** * Encode this object to JSON * * @param bool $asArrayWhenEmpty Whether to serialize this model as an array whenever no fields * are set. (default: false) * * @return mixed */ public function jsonSerialize(bool $asArrayWhenEmpty = false) { $json = []; if (isset($this->id)) { $json['id'] = $this->id; } if (isset($this->employeeId)) { $json['employee_id'] = $this->employeeId; } if (isset($this->eventType)) { $json['event_type'] = $this->eventType; } if (isset($this->eventMoney)) { $json['event_money'] = $this->eventMoney; } if (isset($this->createdAt)) { $json['created_at'] = $this->createdAt; } if (isset($this->description)) { $json['description'] = $this->description; } $json = array_filter($json, function ($val) { return $val !== null; }); return (!$asArrayWhenEmpty && empty($json)) ? new stdClass() : $json; } }
Copyright ©2021 || Defacer Indonesia