File "BulkUpsertLocationCustomAttributesRequestLocationCustomAttributeUpsertRequest.php"
Full path: /home/capoeirajd/www/wp-content/plugins/wpforms-lite/vendor_prefixed/square/square/src/Models/BulkUpsertLocationCustomAttributesRequestLocationCustomAttributeUpsertRequest.php
File
size: 4.06 B (4.06 KB bytes)
MIME-type: text/x-php
Charset: utf-8
Download Open Edit Advanced Editor Back
<?php
declare (strict_types=1);
namespace WPForms\Vendor\Square\Models;
use stdClass;
/**
* Represents an individual upsert request in a
* [BulkUpsertLocationCustomAttributes]($e/LocationCustomAttributes/BulkUpsertLocationCustomAttributes)
* request. An individual request contains a location ID, the custom attribute to create or update,
* and an optional idempotency key.
*/
class BulkUpsertLocationCustomAttributesRequestLocationCustomAttributeUpsertRequest implements \JsonSerializable
{
/**
* @var string
*/
private $locationId;
/**
* @var CustomAttribute
*/
private $customAttribute;
/**
* @var array
*/
private $idempotencyKey = [];
/**
* @param string $locationId
* @param CustomAttribute $customAttribute
*/
public function __construct(string $locationId, CustomAttribute $customAttribute)
{
$this->locationId = $locationId;
$this->customAttribute = $customAttribute;
}
/**
* Returns Location Id.
* The ID of the target [location](entity:Location).
*/
public function getLocationId() : string
{
return $this->locationId;
}
/**
* Sets Location Id.
* The ID of the target [location](entity:Location).
*
* @required
* @maps location_id
*/
public function setLocationId(string $locationId) : void
{
$this->locationId = $locationId;
}
/**
* Returns Custom Attribute.
* A custom attribute value. Each custom attribute value has a corresponding
* `CustomAttributeDefinition` object.
*/
public function getCustomAttribute() : CustomAttribute
{
return $this->customAttribute;
}
/**
* Sets Custom Attribute.
* A custom attribute value. Each custom attribute value has a corresponding
* `CustomAttributeDefinition` object.
*
* @required
* @maps custom_attribute
*/
public function setCustomAttribute(CustomAttribute $customAttribute) : void
{
$this->customAttribute = $customAttribute;
}
/**
* Returns Idempotency Key.
* A unique identifier for this individual upsert request, used to ensure idempotency.
* For more information, see [Idempotency](https://developer.squareup.com/docs/build-basics/common-api-
* patterns/idempotency).
*/
public function getIdempotencyKey() : ?string
{
if (\count($this->idempotencyKey) == 0) {
return null;
}
return $this->idempotencyKey['value'];
}
/**
* Sets Idempotency Key.
* A unique identifier for this individual upsert request, used to ensure idempotency.
* For more information, see [Idempotency](https://developer.squareup.com/docs/build-basics/common-api-
* patterns/idempotency).
*
* @maps idempotency_key
*/
public function setIdempotencyKey(?string $idempotencyKey) : void
{
$this->idempotencyKey['value'] = $idempotencyKey;
}
/**
* Unsets Idempotency Key.
* A unique identifier for this individual upsert request, used to ensure idempotency.
* For more information, see [Idempotency](https://developer.squareup.com/docs/build-basics/common-api-
* patterns/idempotency).
*/
public function unsetIdempotencyKey() : void
{
$this->idempotencyKey = [];
}
/**
* 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 = [];
$json['location_id'] = $this->locationId;
$json['custom_attribute'] = $this->customAttribute;
if (!empty($this->idempotencyKey)) {
$json['idempotency_key'] = $this->idempotencyKey['value'];
}
$json = \array_filter($json, function ($val) {
return $val !== null;
});
return !$asArrayWhenEmpty && empty($json) ? new stdClass() : $json;
}
}