/home/arranoyd/magicraft/wp-content/plugins/ninja-popups/include/moosend/lib/Model/Analytic.php
<?php
/**
* Analytic
*
* PHP version 5
*
* @category Class
* @package Swagger\Client
* @author Swaagger Codegen team
* @link https://github.com/swagger-api/swagger-codegen
*/
/**
* Moosend API
*
* TODO: Add a description
*
* OpenAPI spec version: 1.0
*
* Generated by: https://github.com/swagger-api/swagger-codegen.git
*
*/
/**
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen
* Do not edit the class manually.
*/
namespace Swagger\Client\Model;
use \ArrayAccess;
/**
* Analytic Class Doc Comment
*
* @category Class
* @package Swagger\Client
* @author Swagger Codegen team
* @link https://github.com/swagger-api/swagger-codegen
*/
class Analytic implements ArrayAccess
{
const DISCRIMINATOR = null;
/**
* The original name of the model.
* @var string
*/
protected static $swaggerModelName = 'Analytic';
/**
* Array of property to type mappings. Used for (de)serialization
* @var string[]
*/
protected static $swaggerTypes = [
'context' => 'string',
'context_description' => 'string',
'context_name' => 'string',
'total_count' => 'double',
'unique_count' => 'double'
];
/**
* Array of property to format mappings. Used for (de)serialization
* @var string[]
*/
protected static $swaggerFormats = [
'context' => null,
'context_description' => null,
'context_name' => null,
'total_count' => 'double',
'unique_count' => 'double'
];
public static function swaggerTypes()
{
return self::$swaggerTypes;
}
public static function swaggerFormats()
{
return self::$swaggerFormats;
}
/**
* Array of attributes where the key is the local name, and the value is the original name
* @var string[]
*/
protected static $attributeMap = [
'context' => 'Context',
'context_description' => 'ContextDescription',
'context_name' => 'ContextName',
'total_count' => 'TotalCount',
'unique_count' => 'UniqueCount'
];
/**
* Array of attributes to setter functions (for deserialization of responses)
* @var string[]
*/
protected static $setters = [
'context' => 'setContext',
'context_description' => 'setContextDescription',
'context_name' => 'setContextName',
'total_count' => 'setTotalCount',
'unique_count' => 'setUniqueCount'
];
/**
* Array of attributes to getter functions (for serialization of requests)
* @var string[]
*/
protected static $getters = [
'context' => 'getContext',
'context_description' => 'getContextDescription',
'context_name' => 'getContextName',
'total_count' => 'getTotalCount',
'unique_count' => 'getUniqueCount'
];
public static function attributeMap()
{
return self::$attributeMap;
}
public static function setters()
{
return self::$setters;
}
public static function getters()
{
return self::$getters;
}
/**
* 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->container['context'] = isset($data['context']) ? $data['context'] : null;
$this->container['context_description'] = isset($data['context_description']) ? $data['context_description'] : null;
$this->container['context_name'] = isset($data['context_name']) ? $data['context_name'] : null;
$this->container['total_count'] = isset($data['total_count']) ? $data['total_count'] : null;
$this->container['unique_count'] = isset($data['unique_count']) ? $data['unique_count'] : null;
}
/**
* show all the invalid properties with reasons.
*
* @return array invalid properties with reasons
*/
public function listInvalidProperties()
{
$invalid_properties = [];
return $invalid_properties;
}
/**
* validate all the properties in the model
* return true if all passed
*
* @return bool True if all properties are valid
*/
public function valid()
{
return true;
}
/**
* Gets context
* @return string
*/
public function getContext()
{
return $this->container['context'];
}
/**
* Sets context
* @param string $context
* @return $this
*/
public function setContext($context)
{
$this->container['context'] = $context;
return $this;
}
/**
* Gets context_description
* @return string
*/
public function getContextDescription()
{
return $this->container['context_description'];
}
/**
* Sets context_description
* @param string $context_description
* @return $this
*/
public function setContextDescription($context_description)
{
$this->container['context_description'] = $context_description;
return $this;
}
/**
* Gets context_name
* @return string
*/
public function getContextName()
{
return $this->container['context_name'];
}
/**
* Sets context_name
* @param string $context_name
* @return $this
*/
public function setContextName($context_name)
{
$this->container['context_name'] = $context_name;
return $this;
}
/**
* Gets total_count
* @return double
*/
public function getTotalCount()
{
return $this->container['total_count'];
}
/**
* Sets total_count
* @param double $total_count
* @return $this
*/
public function setTotalCount($total_count)
{
$this->container['total_count'] = $total_count;
return $this;
}
/**
* Gets unique_count
* @return double
*/
public function getUniqueCount()
{
return $this->container['unique_count'];
}
/**
* Sets unique_count
* @param double $unique_count
* @return $this
*/
public function setUniqueCount($unique_count)
{
$this->container['unique_count'] = $unique_count;
return $this;
}
/**
* Returns true if offset exists. False otherwise.
* @param integer $offset Offset
* @return boolean
*/
public function offsetExists($offset)
{
return isset($this->container[$offset]);
}
/**
* Gets offset.
* @param integer $offset Offset
* @return mixed
*/
public function offsetGet($offset)
{
return isset($this->container[$offset]) ? $this->container[$offset] : null;
}
/**
* Sets value based on offset.
* @param integer $offset Offset
* @param mixed $value Value to be set
* @return void
*/
public function offsetSet($offset, $value)
{
if (is_null($offset)) {
$this->container[] = $value;
} else {
$this->container[$offset] = $value;
}
}
/**
* Unsets offset.
* @param integer $offset Offset
* @return void
*/
public function offsetUnset($offset)
{
unset($this->container[$offset]);
}
/**
* Gets the string presentation of the object
* @return string
*/
public function __toString()
{
if (defined('JSON_PRETTY_PRINT')) { // use JSON pretty print
return json_encode(\Swagger\Client\ObjectSerializer::sanitizeForSerialization($this), JSON_PRETTY_PRINT);
}
return json_encode(\Swagger\Client\ObjectSerializer::sanitizeForSerialization($this));
}
}