File "UpdateCustomerCustomAttributeDefinitionRequest.php"
Full Path: /home/capoeirajd/www/wp-content/plugins/wpforms-lite/vendor_prefixed/square/square/src/Models/UpdateCustomerCustomAttributeDefinitionRequest.php
File size: 3.5 KB
MIME-type: text/x-php
Charset: utf-8
<?php
declare (strict_types=1);
namespace WPForms\Vendor\Square\Models;
use stdClass;
/**
* Represents an
* [UpdateCustomerCustomAttributeDefinition]($e/CustomerCustomAttributes/UpdateCustomerCustomAttributeD
* efinition) request.
*/
class UpdateCustomerCustomAttributeDefinitionRequest implements \JsonSerializable
{
/**
* @var CustomAttributeDefinition
*/
private $customAttributeDefinition;
/**
* @var array
*/
private $idempotencyKey = [];
/**
* @param CustomAttributeDefinition $customAttributeDefinition
*/
public function __construct(CustomAttributeDefinition $customAttributeDefinition)
{
$this->customAttributeDefinition = $customAttributeDefinition;
}
/**
* Returns Custom Attribute Definition.
* Represents a definition for custom attribute values. A custom attribute definition
* specifies the key, visibility, schema, and other properties for a custom attribute.
*/
public function getCustomAttributeDefinition() : CustomAttributeDefinition
{
return $this->customAttributeDefinition;
}
/**
* Sets Custom Attribute Definition.
* Represents a definition for custom attribute values. A custom attribute definition
* specifies the key, visibility, schema, and other properties for a custom attribute.
*
* @required
* @maps custom_attribute_definition
*/
public function setCustomAttributeDefinition(CustomAttributeDefinition $customAttributeDefinition) : void
{
$this->customAttributeDefinition = $customAttributeDefinition;
}
/**
* Returns Idempotency Key.
* A unique identifier for this 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 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 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['custom_attribute_definition'] = $this->customAttributeDefinition;
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;
}
}