/lib/Model/GetInsurancePrices200Ok.php
https://gitlab.com/mglinski/php-esi-lib · PHP · 276 lines · 111 code · 35 blank · 130 comment · 6 complexity · b8953f3c5abb5a1fcebdb6fe2dc88f99 MD5 · raw file
- <?php
- /**
- * GetInsurancePrices200Ok
- *
- * PHP version 5
- *
- * @category Class
- * @package ESI\Client
- * @author http://github.com/swagger-api/swagger-codegen
- * @license http://www.apache.org/licenses/LICENSE-2.0 Apache Licene v2
- * @link https://github.com/swagger-api/swagger-codegen
- */
- /**
- * EVE Swagger Interface
- *
- * An OpenAPI for EVE Online
- *
- * OpenAPI spec version: 0.3.9
- *
- * Generated by: https://github.com/swagger-api/swagger-codegen.git
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- /**
- * 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 ESI\Client\Model;
- use ArrayAccess;
- /**
- * GetInsurancePrices200Ok Class Doc Comment
- *
- * @category Class */
- // @description 200 ok object
- /**
- * @package ESI\Client
- * @author http://github.com/swagger-api/swagger-codegen
- * @license http://www.apache.org/licenses/LICENSE-2.0 Apache Licene v2
- * @link https://github.com/swagger-api/swagger-codegen
- */
- class GetInsurancePrices200Ok implements ArrayAccess
- {
- /**
- * The original name of the model.
- * @var string
- */
- protected static $swaggerModelName = 'get_insurance_prices_200_ok';
- /**
- * Array of property to type mappings. Used for (de)serialization
- * @var string[]
- */
- protected static $swaggerTypes = array(
- 'levels' => '\ESI\Client\Model\InsurancepricesLevels[]',
- 'type_id' => 'int'
- );
- public static function swaggerTypes()
- {
- return self::$swaggerTypes;
- }
- /**
- * Array of attributes where the key is the local name, and the value is the original name
- * @var string[]
- */
- protected static $attributeMap = array(
- 'levels' => 'levels',
- 'type_id' => 'type_id'
- );
- public static function attributeMap()
- {
- return self::$attributeMap;
- }
- /**
- * Array of attributes to setter functions (for deserialization of responses)
- * @var string[]
- */
- protected static $setters = array(
- 'levels' => 'setLevels',
- 'type_id' => 'setTypeId'
- );
- public static function setters()
- {
- return self::$setters;
- }
- /**
- * Array of attributes to getter functions (for serialization of requests)
- * @var string[]
- */
- protected static $getters = array(
- 'levels' => 'getLevels',
- 'type_id' => 'getTypeId'
- );
- public static function getters()
- {
- return self::$getters;
- }
-
-
- /**
- * Associative array for storing property values
- * @var mixed[]
- */
- protected $container = array();
- /**
- * Constructor
- * @param mixed[] $data Associated array of property value initalizing the model
- */
- public function __construct(array $data = null)
- {
- $this->container['levels'] = isset($data['levels']) ? $data['levels'] : null;
- $this->container['type_id'] = isset($data['type_id']) ? $data['type_id'] : null;
- }
- /**
- * show all the invalid properties with reasons.
- *
- * @return array invalid properties with reasons
- */
- public function listInvalidProperties()
- {
- $invalid_properties = array();
- if ($this->container['levels'] === null) {
- $invalid_properties[] = "'levels' can't be null";
- }
- if ($this->container['type_id'] === null) {
- $invalid_properties[] = "'type_id' can't be null";
- }
- return $invalid_properties;
- }
- /**
- * validate all the properties in the model
- * return true if all passed
- *
- * @return bool True if all properteis are valid
- */
- public function valid()
- {
- if ($this->container['levels'] === null) {
- return false;
- }
- if ($this->container['type_id'] === null) {
- return false;
- }
- return true;
- }
- /**
- * Gets levels
- * @return \ESI\Client\Model\InsurancepricesLevels[]
- */
- public function getLevels()
- {
- return $this->container['levels'];
- }
- /**
- * Sets levels
- * @param \ESI\Client\Model\InsurancepricesLevels[] $levels A list of a available insurance levels for this ship type
- * @return $this
- */
- public function setLevels($levels)
- {
- $this->container['levels'] = $levels;
- return $this;
- }
- /**
- * Gets type_id
- * @return int
- */
- public function getTypeId()
- {
- return $this->container['type_id'];
- }
- /**
- * Sets type_id
- * @param int $type_id type_id integer
- * @return $this
- */
- public function setTypeId($type_id)
- {
- $this->container['type_id'] = $type_id;
- 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(\ESI\Client\ObjectSerializer::sanitizeForSerialization($this), JSON_PRETTY_PRINT);
- }
- return json_encode(\ESI\Client\ObjectSerializer::sanitizeForSerialization($this));
- }
- }