/lib/Model/GetKillmailsKillmailIdKillmailHashOkVictim.php
https://gitlab.com/mglinski/php-esi-lib · PHP · 432 lines · 195 code · 53 blank · 184 comment · 6 complexity · 1fa60929d17dd1d0f28c4ae717752ad5 MD5 · raw file
- <?php
- /**
- * GetKillmailsKillmailIdKillmailHashOkVictim
- *
- * 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;
- /**
- * GetKillmailsKillmailIdKillmailHashOkVictim Class Doc Comment
- *
- * @category Class */
- // @description victim 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 GetKillmailsKillmailIdKillmailHashOkVictim implements ArrayAccess
- {
- /**
- * The original name of the model.
- * @var string
- */
- protected static $swaggerModelName = 'get_killmails_killmail_id_killmail_hash_ok_victim';
- /**
- * Array of property to type mappings. Used for (de)serialization
- * @var string[]
- */
- protected static $swaggerTypes = array(
- 'alliance_id' => 'int',
- 'character_id' => 'int',
- 'corporation_id' => 'int',
- 'damage_taken' => 'int',
- 'faction_id' => 'int',
- 'items' => '\ESI\Client\Model\GetKillmailsKillmailIdKillmailHashOkVictimItems1[]',
- 'position' => '\ESI\Client\Model\GetKillmailsKillmailIdKillmailHashOkVictimPosition',
- 'ship_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(
- 'alliance_id' => 'alliance_id',
- 'character_id' => 'character_id',
- 'corporation_id' => 'corporation_id',
- 'damage_taken' => 'damage_taken',
- 'faction_id' => 'faction_id',
- 'items' => 'items',
- 'position' => 'position',
- 'ship_type_id' => 'ship_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(
- 'alliance_id' => 'setAllianceId',
- 'character_id' => 'setCharacterId',
- 'corporation_id' => 'setCorporationId',
- 'damage_taken' => 'setDamageTaken',
- 'faction_id' => 'setFactionId',
- 'items' => 'setItems',
- 'position' => 'setPosition',
- 'ship_type_id' => 'setShipTypeId'
- );
- public static function setters()
- {
- return self::$setters;
- }
- /**
- * Array of attributes to getter functions (for serialization of requests)
- * @var string[]
- */
- protected static $getters = array(
- 'alliance_id' => 'getAllianceId',
- 'character_id' => 'getCharacterId',
- 'corporation_id' => 'getCorporationId',
- 'damage_taken' => 'getDamageTaken',
- 'faction_id' => 'getFactionId',
- 'items' => 'getItems',
- 'position' => 'getPosition',
- 'ship_type_id' => 'getShipTypeId'
- );
- 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['alliance_id'] = isset($data['alliance_id']) ? $data['alliance_id'] : null;
- $this->container['character_id'] = isset($data['character_id']) ? $data['character_id'] : null;
- $this->container['corporation_id'] = isset($data['corporation_id']) ? $data['corporation_id'] : null;
- $this->container['damage_taken'] = isset($data['damage_taken']) ? $data['damage_taken'] : null;
- $this->container['faction_id'] = isset($data['faction_id']) ? $data['faction_id'] : null;
- $this->container['items'] = isset($data['items']) ? $data['items'] : null;
- $this->container['position'] = isset($data['position']) ? $data['position'] : null;
- $this->container['ship_type_id'] = isset($data['ship_type_id']) ? $data['ship_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['damage_taken'] === null) {
- $invalid_properties[] = "'damage_taken' can't be null";
- }
- if ($this->container['ship_type_id'] === null) {
- $invalid_properties[] = "'ship_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['damage_taken'] === null) {
- return false;
- }
- if ($this->container['ship_type_id'] === null) {
- return false;
- }
- return true;
- }
- /**
- * Gets alliance_id
- * @return int
- */
- public function getAllianceId()
- {
- return $this->container['alliance_id'];
- }
- /**
- * Sets alliance_id
- * @param int $alliance_id alliance_id integer
- * @return $this
- */
- public function setAllianceId($alliance_id)
- {
- $this->container['alliance_id'] = $alliance_id;
- return $this;
- }
- /**
- * Gets character_id
- * @return int
- */
- public function getCharacterId()
- {
- return $this->container['character_id'];
- }
- /**
- * Sets character_id
- * @param int $character_id character_id integer
- * @return $this
- */
- public function setCharacterId($character_id)
- {
- $this->container['character_id'] = $character_id;
- return $this;
- }
- /**
- * Gets corporation_id
- * @return int
- */
- public function getCorporationId()
- {
- return $this->container['corporation_id'];
- }
- /**
- * Sets corporation_id
- * @param int $corporation_id corporation_id integer
- * @return $this
- */
- public function setCorporationId($corporation_id)
- {
- $this->container['corporation_id'] = $corporation_id;
- return $this;
- }
- /**
- * Gets damage_taken
- * @return int
- */
- public function getDamageTaken()
- {
- return $this->container['damage_taken'];
- }
- /**
- * Sets damage_taken
- * @param int $damage_taken How much total damage was taken by the victim
- * @return $this
- */
- public function setDamageTaken($damage_taken)
- {
- $this->container['damage_taken'] = $damage_taken;
- return $this;
- }
- /**
- * Gets faction_id
- * @return int
- */
- public function getFactionId()
- {
- return $this->container['faction_id'];
- }
- /**
- * Sets faction_id
- * @param int $faction_id faction_id integer
- * @return $this
- */
- public function setFactionId($faction_id)
- {
- $this->container['faction_id'] = $faction_id;
- return $this;
- }
- /**
- * Gets items
- * @return \ESI\Client\Model\GetKillmailsKillmailIdKillmailHashOkVictimItems1[]
- */
- public function getItems()
- {
- return $this->container['items'];
- }
- /**
- * Sets items
- * @param \ESI\Client\Model\GetKillmailsKillmailIdKillmailHashOkVictimItems1[] $items items array
- * @return $this
- */
- public function setItems($items)
- {
- $this->container['items'] = $items;
- return $this;
- }
- /**
- * Gets position
- * @return \ESI\Client\Model\GetKillmailsKillmailIdKillmailHashOkVictimPosition
- */
- public function getPosition()
- {
- return $this->container['position'];
- }
- /**
- * Sets position
- * @param \ESI\Client\Model\GetKillmailsKillmailIdKillmailHashOkVictimPosition $position
- * @return $this
- */
- public function setPosition($position)
- {
- $this->container['position'] = $position;
- return $this;
- }
- /**
- * Gets ship_type_id
- * @return int
- */
- public function getShipTypeId()
- {
- return $this->container['ship_type_id'];
- }
- /**
- * Sets ship_type_id
- * @param int $ship_type_id The ship that the victim was piloting and was destroyed
- * @return $this
- */
- public function setShipTypeId($ship_type_id)
- {
- $this->container['ship_type_id'] = $ship_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));
- }
- }