<?php
/**
* GameResponseOffersInner
*
* PHP version 7.4
*
* @category Class
* @package OpenAPI\Client
* @author OpenAPI Generator team
* @link https://openapi-generator.tech
*/
/**
* GameBrain API
*
* GameBrain API
*
* The version of the OpenAPI document: 1.0.1
* Contact: mail@gamebrain.co
* Generated by: https://openapi-generator.tech
* Generator version: 7.8.0-SNAPSHOT
*/
/**
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
namespace OpenAPI\Client\Model;
use \ArrayAccess;
use \OpenAPI\Client\ObjectSerializer;
/**
* GameResponseOffersInner Class Doc Comment
*
* @category Class
* @package OpenAPI\Client
* @author OpenAPI Generator team
* @link https://openapi-generator.tech
* @implements \ArrayAccess<string, mixed>
*/
class GameResponseOffersInner implements ModelInterface, ArrayAccess, \JsonSerializable
{
public const DISCRIMINATOR = null;
/**
* The original name of the model.
*
* @var string
*/
protected static $openAPIModelName = 'GameResponse_offers_inner';
/**
* Array of property to type mappings. Used for (de)serialization
*
* @var string[]
*/
protected static $openAPITypes = [
'price' => '\OpenAPI\Client\Model\GameResponseOffersInnerPrice',
'store_name' => 'string',
'platform' => 'string',
'title' => 'string',
'url' => 'string'
];
/**
* Array of property to format mappings. Used for (de)serialization
*
* @var string[]
* @phpstan-var array<string, string|null>
* @psalm-var array<string, string|null>
*/
protected static $openAPIFormats = [
'price' => null,
'store_name' => null,
'platform' => null,
'title' => null,
'url' => 'uri'
];
/**
* Array of nullable properties. Used for (de)serialization
*
* @var boolean[]
*/
protected static array $openAPINullables = [
'price' => false,
'store_name' => false,
'platform' => false,
'title' => false,
'url' => false
];
/**
* If a nullable field gets set to null, insert it here
*
* @var boolean[]
*/
protected array $openAPINullablesSetToNull = [];
/**
* Array of property to type mappings. Used for (de)serialization
*
* @return array
*/
public static function openAPITypes()
{
return self::$openAPITypes;
}
/**
* Array of property to format mappings. Used for (de)serialization
*
* @return array
*/
public static function openAPIFormats()
{
return self::$openAPIFormats;
}
/**
* Array of nullable properties
*
* @return array
*/
protected static function openAPINullables(): array
{
return self::$openAPINullables;
}
/**
* Array of nullable field names deliberately set to null
*
* @return boolean[]
*/
private function getOpenAPINullablesSetToNull(): array
{
return $this->openAPINullablesSetToNull;
}
/**
* Setter - Array of nullable field names deliberately set to null
*
* @param boolean[] $openAPINullablesSetToNull
*/
private function setOpenAPINullablesSetToNull(array $openAPINullablesSetToNull): void
{
$this->openAPINullablesSetToNull = $openAPINullablesSetToNull;
}
/**
* Checks if a property is nullable
*
* @param string $property
* @return bool
*/
public static function isNullable(string $property): bool
{
return self::openAPINullables()[$property] ?? false;
}
/**
* Checks if a nullable property is set to null.
*
* @param string $property
* @return bool
*/
public function isNullableSetToNull(string $property): bool
{
return in_array($property, $this->getOpenAPINullablesSetToNull(), true);
}
/**
* Array of attributes where the key is the local name,
* and the value is the original name
*
* @var string[]
*/
protected static $attributeMap = [
'price' => 'price',
'store_name' => 'store_name',
'platform' => 'platform',
'title' => 'title',
'url' => 'url'
];
/**
* Array of attributes to setter functions (for deserialization of responses)
*
* @var string[]
*/
protected static $setters = [
'price' => 'setPrice',
'store_name' => 'setStoreName',
'platform' => 'setPlatform',
'title' => 'setTitle',
'url' => 'setUrl'
];
/**
* Array of attributes to getter functions (for serialization of requests)
*
* @var string[]
*/
protected static $getters = [
'price' => 'getPrice',
'store_name' => 'getStoreName',
'platform' => 'getPlatform',
'title' => 'getTitle',
'url' => 'getUrl'
];
/**
* Array of attributes where the key is the local name,
* and the value is the original name
*
* @return array
*/
public static function attributeMap()
{
return self::$attributeMap;
}
/**
* Array of attributes to setter functions (for deserialization of responses)
*
* @return array
*/
public static function setters()
{
return self::$setters;
}
/**
* Array of attributes to getter functions (for serialization of requests)
*
* @return array
*/
public static function getters()
{
return self::$getters;
}
/**
* The original name of the model.
*
* @return string
*/
public function getModelName()
{
return self::$openAPIModelName;
}
/**
* Associative array for storing property values
*
* @var mixed[]
*/
protected $container = [];
/**
* Constructor
*
* @param mixed[] $data Associated array of property values
* initializing the model
*/
public function __construct(array $data = null)
{
$this->setIfExists('price', $data ?? [], null);
$this->setIfExists('store_name', $data ?? [], null);
$this->setIfExists('platform', $data ?? [], null);
$this->setIfExists('title', $data ?? [], null);
$this->setIfExists('url', $data ?? [], null);
}
/**
* Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName
* is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the
* $this->openAPINullablesSetToNull array
*
* @param string $variableName
* @param array $fields
* @param mixed $defaultValue
*/
private function setIfExists(string $variableName, array $fields, $defaultValue): void
{
if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) {
$this->openAPINullablesSetToNull[] = $variableName;
}
$this->container[$variableName] = $fields[$variableName] ?? $defaultValue;
}
/**
* Show all the invalid properties with reasons.
*
* @return array invalid properties with reasons
*/
public function listInvalidProperties()
{
$invalidProperties = [];
return $invalidProperties;
}
/**
* Validate all the properties in the model
* return true if all passed
*
* @return bool True if all properties are valid
*/
public function valid()
{
return count($this->listInvalidProperties()) === 0;
}
/**
* Gets price
*
* @return \OpenAPI\Client\Model\GameResponseOffersInnerPrice|null
*/
public function getPrice()
{
return $this->container['price'];
}
/**
* Sets price
*
* @param \OpenAPI\Client\Model\GameResponseOffersInnerPrice|null $price price
*
* @return self
*/
public function setPrice($price)
{
if (is_null($price)) {
throw new \InvalidArgumentException('non-nullable price cannot be null');
}
$this->container['price'] = $price;
return $this;
}
/**
* Gets store_name
*
* @return string|null
*/
public function getStoreName()
{
return $this->container['store_name'];
}
/**
* Sets store_name
*
* @param string|null $store_name store_name
*
* @return self
*/
public function setStoreName($store_name)
{
if (is_null($store_name)) {
throw new \InvalidArgumentException('non-nullable store_name cannot be null');
}
$this->container['store_name'] = $store_name;
return $this;
}
/**
* Gets platform
*
* @return string|null
*/
public function getPlatform()
{
return $this->container['platform'];
}
/**
* Sets platform
*
* @param string|null $platform platform
*
* @return self
*/
public function setPlatform($platform)
{
if (is_null($platform)) {
throw new \InvalidArgumentException('non-nullable platform cannot be null');
}
$this->container['platform'] = $platform;
return $this;
}
/**
* Gets title
*
* @return string|null
*/
public function getTitle()
{
return $this->container['title'];
}
/**
* Sets title
*
* @param string|null $title title
*
* @return self
*/
public function setTitle($title)
{
if (is_null($title)) {
throw new \InvalidArgumentException('non-nullable title cannot be null');
}
$this->container['title'] = $title;
return $this;
}
/**
* Gets url
*
* @return string|null
*/
public function getUrl()
{
return $this->container['url'];
}
/**
* Sets url
*
* @param string|null $url url
*
* @return self
*/
public function setUrl($url)
{
if (is_null($url)) {
throw new \InvalidArgumentException('non-nullable url cannot be null');
}
$this->container['url'] = $url;
return $this;
}
/**
* Returns true if offset exists. False otherwise.
*
* @param integer $offset Offset
*
* @return boolean
*/
public function offsetExists($offset): bool
{
return isset($this->container[$offset]);
}
/**
* Gets offset.
*
* @param integer $offset Offset
*
* @return mixed|null
*/
#[\ReturnTypeWillChange]
public function offsetGet($offset)
{
return $this->container[$offset] ?? null;
}
/**
* Sets value based on offset.
*
* @param int|null $offset Offset
* @param mixed $value Value to be set
*
* @return void
*/
public function offsetSet($offset, $value): void
{
if (is_null($offset)) {
$this->container[] = $value;
} else {
$this->container[$offset] = $value;
}
}
/**
* Unsets offset.
*
* @param integer $offset Offset
*
* @return void
*/
public function offsetUnset($offset): void
{
unset($this->container[$offset]);
}
/**
* Serializes the object to a value that can be serialized natively by json_encode().
* @link https://www.php.net/manual/en/jsonserializable.jsonserialize.php
*
* @return mixed Returns data which can be serialized by json_encode(), which is a value
* of any type other than a resource.
*/
#[\ReturnTypeWillChange]
public function jsonSerialize()
{
return ObjectSerializer::sanitizeForSerialization($this);
}
/**
* Gets the string presentation of the object
*
* @return string
*/
public function __toString()
{
return json_encode(
ObjectSerializer::sanitizeForSerialization($this),
JSON_PRETTY_PRINT
);
}
/**
* Gets a header-safe presentation of the object
*
* @return string
*/
public function toHeaderValue()
{
return json_encode(ObjectSerializer::sanitizeForSerialization($this));
}
}