%PDF- %GIF98; %PNG;
Server : ApacheSystem : Linux host.digitalbabaji.in 4.18.0-513.11.1.el8_9.x86_64 #1 SMP Wed Jan 17 02:00:40 EST 2024 x86_64 User : addictionfreeind ( 1003) PHP Version : 7.2.34 Disable Function : exec,passthru,shell_exec,system Directory : /home/addictionfreeind/www/admin1/vendor/square/square/src/Models/ |
Upload File : |
<?php
declare(strict_types=1);
namespace Square\Models;
use stdClass;
/**
* An employee object that is used by the external API.
*/
class Employee implements \JsonSerializable
{
/**
* @var string|null
*/
private $id;
/**
* @var string|null
*/
private $firstName;
/**
* @var string|null
*/
private $lastName;
/**
* @var string|null
*/
private $email;
/**
* @var string|null
*/
private $phoneNumber;
/**
* @var string[]|null
*/
private $locationIds;
/**
* @var string|null
*/
private $status;
/**
* @var bool|null
*/
private $isOwner;
/**
* @var string|null
*/
private $createdAt;
/**
* @var string|null
*/
private $updatedAt;
/**
* Returns Id.
*
* UUID for this object.
*/
public function getId(): ?string
{
return $this->id;
}
/**
* Sets Id.
*
* UUID for this object.
*
* @maps id
*/
public function setId(?string $id): void
{
$this->id = $id;
}
/**
* Returns First Name.
*
* The employee's first name.
*/
public function getFirstName(): ?string
{
return $this->firstName;
}
/**
* Sets First Name.
*
* The employee's first name.
*
* @maps first_name
*/
public function setFirstName(?string $firstName): void
{
$this->firstName = $firstName;
}
/**
* Returns Last Name.
*
* The employee's last name.
*/
public function getLastName(): ?string
{
return $this->lastName;
}
/**
* Sets Last Name.
*
* The employee's last name.
*
* @maps last_name
*/
public function setLastName(?string $lastName): void
{
$this->lastName = $lastName;
}
/**
* Returns Email.
*
* The employee's email address
*/
public function getEmail(): ?string
{
return $this->email;
}
/**
* Sets Email.
*
* The employee's email address
*
* @maps email
*/
public function setEmail(?string $email): void
{
$this->email = $email;
}
/**
* Returns Phone Number.
*
* The employee's phone number in E.164 format, i.e. "+12125554250"
*/
public function getPhoneNumber(): ?string
{
return $this->phoneNumber;
}
/**
* Sets Phone Number.
*
* The employee's phone number in E.164 format, i.e. "+12125554250"
*
* @maps phone_number
*/
public function setPhoneNumber(?string $phoneNumber): void
{
$this->phoneNumber = $phoneNumber;
}
/**
* Returns Location Ids.
*
* A list of location IDs where this employee has access to.
*
* @return string[]|null
*/
public function getLocationIds(): ?array
{
return $this->locationIds;
}
/**
* Sets Location Ids.
*
* A list of location IDs where this employee has access to.
*
* @maps location_ids
*
* @param string[]|null $locationIds
*/
public function setLocationIds(?array $locationIds): void
{
$this->locationIds = $locationIds;
}
/**
* Returns Status.
*
* The status of the Employee being retrieved.
*/
public function getStatus(): ?string
{
return $this->status;
}
/**
* Sets Status.
*
* The status of the Employee being retrieved.
*
* @maps status
*/
public function setStatus(?string $status): void
{
$this->status = $status;
}
/**
* Returns Is Owner.
*
* Whether this employee is the owner of the merchant. Each merchant
* has one owner employee, and that employee has full authority over
* the account.
*/
public function getIsOwner(): ?bool
{
return $this->isOwner;
}
/**
* Sets Is Owner.
*
* Whether this employee is the owner of the merchant. Each merchant
* has one owner employee, and that employee has full authority over
* the account.
*
* @maps is_owner
*/
public function setIsOwner(?bool $isOwner): void
{
$this->isOwner = $isOwner;
}
/**
* Returns Created At.
*
* A read-only timestamp in RFC 3339 format.
*/
public function getCreatedAt(): ?string
{
return $this->createdAt;
}
/**
* Sets Created At.
*
* A read-only timestamp in RFC 3339 format.
*
* @maps created_at
*/
public function setCreatedAt(?string $createdAt): void
{
$this->createdAt = $createdAt;
}
/**
* Returns Updated At.
*
* A read-only timestamp in RFC 3339 format.
*/
public function getUpdatedAt(): ?string
{
return $this->updatedAt;
}
/**
* Sets Updated At.
*
* A read-only timestamp in RFC 3339 format.
*
* @maps updated_at
*/
public function setUpdatedAt(?string $updatedAt): void
{
$this->updatedAt = $updatedAt;
}
/**
* 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->firstName)) {
$json['first_name'] = $this->firstName;
}
if (isset($this->lastName)) {
$json['last_name'] = $this->lastName;
}
if (isset($this->email)) {
$json['email'] = $this->email;
}
if (isset($this->phoneNumber)) {
$json['phone_number'] = $this->phoneNumber;
}
if (isset($this->locationIds)) {
$json['location_ids'] = $this->locationIds;
}
if (isset($this->status)) {
$json['status'] = $this->status;
}
if (isset($this->isOwner)) {
$json['is_owner'] = $this->isOwner;
}
if (isset($this->createdAt)) {
$json['created_at'] = $this->createdAt;
}
if (isset($this->updatedAt)) {
$json['updated_at'] = $this->updatedAt;
}
$json = array_filter($json, function ($val) {
return $val !== null;
});
return (!$asArrayWhenEmpty && empty($json)) ? new stdClass() : $json;
}
}