Sid Gifari File Manager
🏠 Root
/
home2
/
meumer25
/
meupet.app
/
wp-content
/
plugins
/
wpforms-lite
/
vendor_prefixed
/
square
/
square
/
src
/
Models
/
Editing: BusinessBookingProfile.php
<?php declare (strict_types=1); namespace WPForms\Vendor\Square\Models; use stdClass; /** * A seller's business booking profile, including booking policy, appointment settings, etc. */ class BusinessBookingProfile implements \JsonSerializable { /** * @var array */ private $sellerId = []; /** * @var string|null */ private $createdAt; /** * @var array */ private $bookingEnabled = []; /** * @var string|null */ private $customerTimezoneChoice; /** * @var string|null */ private $bookingPolicy; /** * @var array */ private $allowUserCancel = []; /** * @var BusinessAppointmentSettings|null */ private $businessAppointmentSettings; /** * @var array */ private $supportSellerLevelWrites = []; /** * Returns Seller Id. * The ID of the seller, obtainable using the Merchants API. */ public function getSellerId() : ?string { if (\count($this->sellerId) == 0) { return null; } return $this->sellerId['value']; } /** * Sets Seller Id. * The ID of the seller, obtainable using the Merchants API. * * @maps seller_id */ public function setSellerId(?string $sellerId) : void { $this->sellerId['value'] = $sellerId; } /** * Unsets Seller Id. * The ID of the seller, obtainable using the Merchants API. */ public function unsetSellerId() : void { $this->sellerId = []; } /** * Returns Created At. * The RFC 3339 timestamp specifying the booking's creation time. */ public function getCreatedAt() : ?string { return $this->createdAt; } /** * Sets Created At. * The RFC 3339 timestamp specifying the booking's creation time. * * @maps created_at */ public function setCreatedAt(?string $createdAt) : void { $this->createdAt = $createdAt; } /** * Returns Booking Enabled. * Indicates whether the seller is open for booking. */ public function getBookingEnabled() : ?bool { if (\count($this->bookingEnabled) == 0) { return null; } return $this->bookingEnabled['value']; } /** * Sets Booking Enabled. * Indicates whether the seller is open for booking. * * @maps booking_enabled */ public function setBookingEnabled(?bool $bookingEnabled) : void { $this->bookingEnabled['value'] = $bookingEnabled; } /** * Unsets Booking Enabled. * Indicates whether the seller is open for booking. */ public function unsetBookingEnabled() : void { $this->bookingEnabled = []; } /** * Returns Customer Timezone Choice. * Choices of customer-facing time zone used for bookings. */ public function getCustomerTimezoneChoice() : ?string { return $this->customerTimezoneChoice; } /** * Sets Customer Timezone Choice. * Choices of customer-facing time zone used for bookings. * * @maps customer_timezone_choice */ public function setCustomerTimezoneChoice(?string $customerTimezoneChoice) : void { $this->customerTimezoneChoice = $customerTimezoneChoice; } /** * Returns Booking Policy. * Policies for accepting bookings. */ public function getBookingPolicy() : ?string { return $this->bookingPolicy; } /** * Sets Booking Policy. * Policies for accepting bookings. * * @maps booking_policy */ public function setBookingPolicy(?string $bookingPolicy) : void { $this->bookingPolicy = $bookingPolicy; } /** * Returns Allow User Cancel. * Indicates whether customers can cancel or reschedule their own bookings (`true`) or not (`false`). */ public function getAllowUserCancel() : ?bool { if (\count($this->allowUserCancel) == 0) { return null; } return $this->allowUserCancel['value']; } /** * Sets Allow User Cancel. * Indicates whether customers can cancel or reschedule their own bookings (`true`) or not (`false`). * * @maps allow_user_cancel */ public function setAllowUserCancel(?bool $allowUserCancel) : void { $this->allowUserCancel['value'] = $allowUserCancel; } /** * Unsets Allow User Cancel. * Indicates whether customers can cancel or reschedule their own bookings (`true`) or not (`false`). */ public function unsetAllowUserCancel() : void { $this->allowUserCancel = []; } /** * Returns Business Appointment Settings. * The service appointment settings, including where and how the service is provided. */ public function getBusinessAppointmentSettings() : ?BusinessAppointmentSettings { return $this->businessAppointmentSettings; } /** * Sets Business Appointment Settings. * The service appointment settings, including where and how the service is provided. * * @maps business_appointment_settings */ public function setBusinessAppointmentSettings(?BusinessAppointmentSettings $businessAppointmentSettings) : void { $this->businessAppointmentSettings = $businessAppointmentSettings; } /** * Returns Support Seller Level Writes. * Indicates whether the seller's subscription to Square Appointments supports creating, updating or * canceling an appointment through the API (`true`) or not (`false`) using seller permission. */ public function getSupportSellerLevelWrites() : ?bool { if (\count($this->supportSellerLevelWrites) == 0) { return null; } return $this->supportSellerLevelWrites['value']; } /** * Sets Support Seller Level Writes. * Indicates whether the seller's subscription to Square Appointments supports creating, updating or * canceling an appointment through the API (`true`) or not (`false`) using seller permission. * * @maps support_seller_level_writes */ public function setSupportSellerLevelWrites(?bool $supportSellerLevelWrites) : void { $this->supportSellerLevelWrites['value'] = $supportSellerLevelWrites; } /** * Unsets Support Seller Level Writes. * Indicates whether the seller's subscription to Square Appointments supports creating, updating or * canceling an appointment through the API (`true`) or not (`false`) using seller permission. */ public function unsetSupportSellerLevelWrites() : void { $this->supportSellerLevelWrites = []; } /** * 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 (!empty($this->sellerId)) { $json['seller_id'] = $this->sellerId['value']; } if (isset($this->createdAt)) { $json['created_at'] = $this->createdAt; } if (!empty($this->bookingEnabled)) { $json['booking_enabled'] = $this->bookingEnabled['value']; } if (isset($this->customerTimezoneChoice)) { $json['customer_timezone_choice'] = $this->customerTimezoneChoice; } if (isset($this->bookingPolicy)) { $json['booking_policy'] = $this->bookingPolicy; } if (!empty($this->allowUserCancel)) { $json['allow_user_cancel'] = $this->allowUserCancel['value']; } if (isset($this->businessAppointmentSettings)) { $json['business_appointment_settings'] = $this->businessAppointmentSettings; } if (!empty($this->supportSellerLevelWrites)) { $json['support_seller_level_writes'] = $this->supportSellerLevelWrites['value']; } $json = \array_filter($json, function ($val) { return $val !== null; }); return !$asArrayWhenEmpty && empty($json) ? new stdClass() : $json; } }
Save
Cancel