File "BulkUpsertCustomerCustomAttributesRequestCustomerCustomAttributeUpsertRequest.php"
Full Path: /home/capoeirajd/www/wp-content/plugins/wpforms-lite/vendor_prefixed/square/square/src/Models/BulkUpsertCustomerCustomAttributesRequestCustomerCustomAttributeUpsertRequest.php
File size: 4.08 KB
MIME-type: text/x-php
Charset: utf-8
<?php
declare (strict_types=1);
namespace WPForms\Vendor\Square\Models;
use stdClass;
/**
* Represents an individual upsert request in a
* [BulkUpsertCustomerCustomAttributes]($e/CustomerCustomAttributes/BulkUpsertCustomerCustomAttributes)
* request. An individual request contains a customer ID, the custom attribute to create or update,
* and an optional idempotency key.
*/
class BulkUpsertCustomerCustomAttributesRequestCustomerCustomAttributeUpsertRequest implements \JsonSerializable
{
/**
* @var string
*/
private $customerId;
/**
* @var CustomAttribute
*/
private $customAttribute;
/**
* @var array
*/
private $idempotencyKey = [];
/**
* @param string $customerId
* @param CustomAttribute $customAttribute
*/
public function __construct(string $customerId, CustomAttribute $customAttribute)
{
$this->customerId = $customerId;
$this->customAttribute = $customAttribute;
}
/**
* Returns Customer Id.
* The ID of the target [customer profile](entity:Customer).
*/
public function getCustomerId() : string
{
return $this->customerId;
}
/**
* Sets Customer Id.
* The ID of the target [customer profile](entity:Customer).
*
* @required
* @maps customer_id
*/
public function setCustomerId(string $customerId) : void
{
$this->customerId = $customerId;
}
/**
* 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['customer_id'] = $this->customerId;
$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;
}
}