Files
YeePay/lib/Service/TravelResources/Model/QueryKfcItemsBean.php

484 lines
10 KiB
PHP

<?php
/**
* QueryKfcItemsBean
*
* PHP version 5
*
* @category Class
* @package Yeepay\Yop\Sdk\
* @author Swagger Codegen team
* @link https://github.com/swagger-api/swagger-codegen
*/
/**
* 旅游资源
*
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
*
* OpenAPI spec version: 1.0
*
* Generated by: https://github.com/swagger-api/swagger-codegen.git
* Swagger Codegen version: 3.0.13
*/
/**
* 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 Yeepay\Yop\Sdk\Service\TravelResources\Model;
use \ArrayAccess;
use Yeepay\Yop\Sdk\Model\ModelInterface;
use Yeepay\Yop\Sdk\Utils\ObjectSerializer;
/**
* QueryKfcItemsBean Class Doc Comment
*
* @category Class
* @description kfc商品信息
* @package Yeepay\Yop\Sdk\
* @author Swagger Codegen team
* @link https://github.com/swagger-api/swagger-codegen
*/
class QueryKfcItemsBean implements ModelInterface, ArrayAccess
{
const DISCRIMINATOR = null;
/**
* The original name of the model.
*
* @var string
*/
protected static $swaggerModelName = 'QueryKfcItemsBean';
/**
* Array of property to type mappings. Used for (de)serialization
*
* @var string[]
*/
protected static $swaggerTypes = [
'productId' => 'string',
'productName' => 'string',
'quantity' => 'float',
'price' => 'float',
'imageUrl' => 'string',
'canceled' => 'bool',
'optionItems' => '\Yeepay\Yop\Sdk\Service\TravelResources\Model\QueryKfcOptiionItemsBean[]'
];
/**
* Array of property to format mappings. Used for (de)serialization
*
* @var string[]
*/
protected static $swaggerFormats = [
'productId' => null,
'productName' => null,
'quantity' => null,
'price' => null,
'imageUrl' => null,
'canceled' => null,
'optionItems' => null
];
/**
* Array of property to type mappings. Used for (de)serialization
*
* @return array
*/
public static function swaggerTypes()
{
return self::$swaggerTypes;
}
/**
* Array of property to format mappings. Used for (de)serialization
*
* @return array
*/
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 = [
'productId' => 'productId',
'productName' => 'productName',
'quantity' => 'quantity',
'price' => 'price',
'imageUrl' => 'imageUrl',
'canceled' => 'canceled',
'optionItems' => 'optionItems'
];
/**
* Array of attributes to setter functions (for deserialization of responses)
*
* @var string[]
*/
protected static $setters = [
'productId' => 'setProductId',
'productName' => 'setProductName',
'quantity' => 'setQuantity',
'price' => 'setPrice',
'imageUrl' => 'setImageUrl',
'canceled' => 'setCanceled',
'optionItems' => 'setOptionItems'
];
/**
* Array of attributes to getter functions (for serialization of requests)
*
* @var string[]
*/
protected static $getters = [
'productId' => 'getProductId',
'productName' => 'getProductName',
'quantity' => 'getQuantity',
'price' => 'getPrice',
'imageUrl' => 'getImageUrl',
'canceled' => 'getCanceled',
'optionItems' => 'getOptionItems'
];
/**
* 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::$swaggerModelName;
}
/**
* 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['productId'] = isset($data['productId']) ? $data['productId'] : null;
$this->container['productName'] = isset($data['productName']) ? $data['productName'] : null;
$this->container['quantity'] = isset($data['quantity']) ? $data['quantity'] : null;
$this->container['price'] = isset($data['price']) ? $data['price'] : null;
$this->container['imageUrl'] = isset($data['imageUrl']) ? $data['imageUrl'] : null;
$this->container['canceled'] = isset($data['canceled']) ? $data['canceled'] : null;
$this->container['optionItems'] = isset($data['optionItems']) ? $data['optionItems'] : null;
}
/**
* 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 productId
*
* @return string
*/
public function getProductId()
{
return $this->container['productId'];
}
/**
* Sets productId
*
* @param string $productId <pre>商品id</pre>
*
* @return $this
*/
public function setProductId($productId)
{
$this->container['productId'] = $productId;
return $this;
}
/**
* Gets productName
*
* @return string
*/
public function getProductName()
{
return $this->container['productName'];
}
/**
* Sets productName
*
* @param string $productName <pre>商品名称</pre>
*
* @return $this
*/
public function setProductName($productName)
{
$this->container['productName'] = $productName;
return $this;
}
/**
* Gets quantity
*
* @return float
*/
public function getQuantity()
{
return $this->container['quantity'];
}
/**
* Sets quantity
*
* @param float $quantity <pre>数量</pre>
*
* @return $this
*/
public function setQuantity($quantity)
{
$this->container['quantity'] = $quantity;
return $this;
}
/**
* Gets price
*
* @return float
*/
public function getPrice()
{
return $this->container['price'];
}
/**
* Sets price
*
* @param float $price <pre>价格</pre>
*
* @return $this
*/
public function setPrice($price)
{
$this->container['price'] = $price;
return $this;
}
/**
* Gets imageUrl
*
* @return string
*/
public function getImageUrl()
{
return $this->container['imageUrl'];
}
/**
* Sets imageUrl
*
* @param string $imageUrl <pre>图片地址</pre>
*
* @return $this
*/
public function setImageUrl($imageUrl)
{
$this->container['imageUrl'] = $imageUrl;
return $this;
}
/**
* Gets canceled
*
* @return bool
*/
public function getCanceled()
{
return $this->container['canceled'];
}
/**
* Sets canceled
*
* @param bool $canceled <pre>是否已取消</pre>
*
* @return $this
*/
public function setCanceled($canceled)
{
$this->container['canceled'] = $canceled;
return $this;
}
/**
* Gets optionItems
*
* @return \Yeepay\Yop\Sdk\Service\TravelResources\Model\QueryKfcOptiionItemsBean[]
*/
public function getOptionItems()
{
return $this->container['optionItems'];
}
/**
* Sets optionItems
*
* @param \Yeepay\Yop\Sdk\Service\TravelResources\Model\QueryKfcOptiionItemsBean[] $optionItems <pre>明细</pre>
*
* @return $this
*/
public function setOptionItems($optionItems)
{
$this->container['optionItems'] = $optionItems;
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(
ObjectSerializer::sanitizeForSerialization($this),
JSON_PRETTY_PRINT
);
}
return json_encode(ObjectSerializer::sanitizeForSerialization($this));
}
}