William Cheng 7ad92572e4
Update default value for PHP server generators (slim, silex) (#272)
* update php slim samples

* update php silex samples

* update php silex default value
2018-04-30 15:18:13 +08:00

155 lines
3.0 KiB
PHP

<?php
/**
* ApiResponse
*
* PHP version 5
*
* @category Class
* @package OpenAPI\Server\Model
* @author OpenAPI Generator team
* @link https://github.com/openapitools/openapi-generator
*/
/**
* Swagger Petstore
*
* This is a sample server Petstore server. You can find out more about Swagger at [http://swagger.io](http://swagger.io) or on [irc.freenode.net, #swagger](http://swagger.io/irc/). For this sample, you can use the api key `special-key` to test the authorization filters.
*
* OpenAPI spec version: 1.0.0
* Contact: apiteam@swagger.io
* Generated by: https://github.com/openapitools/openapi-generator.git
*
*/
/**
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/openapitools/openapi-generator
* Do not edit the class manually.
*/
namespace OpenAPI\Server\Model;
use Symfony\Component\Validator\Constraints as Assert;
use JMS\Serializer\Annotation\Type;
use JMS\Serializer\Annotation\SerializedName;
/**
* Class representing the ApiResponse model.
*
* Describes the result of uploading an image resource
*
* @package OpenAPI\Server\Model
* @author OpenAPI Generator team
*/
class ApiResponse
{
/**
* @var int|null
* @SerializedName("code")
* @Assert\Type("int")
* @Type("int")
*/
protected $code;
/**
* @var string|null
* @SerializedName("type")
* @Assert\Type("string")
* @Type("string")
*/
protected $type;
/**
* @var string|null
* @SerializedName("message")
* @Assert\Type("string")
* @Type("string")
*/
protected $message;
/**
* Constructor
* @param mixed[] $data Associated array of property values initializing the model
*/
public function __construct(array $data = null)
{
$this->code = isset($data['code']) ? $data['code'] : null;
$this->type = isset($data['type']) ? $data['type'] : null;
$this->message = isset($data['message']) ? $data['message'] : null;
}
/**
* Gets code.
*
* @return int|null
*/
public function getCode()
{
return $this->code;
}
/**
* Sets code.
*
* @param int|null $code
*
* @return $this
*/
public function setCode($code = null)
{
$this->code = $code;
return $this;
}
/**
* Gets type.
*
* @return string|null
*/
public function getType()
{
return $this->type;
}
/**
* Sets type.
*
* @param string|null $type
*
* @return $this
*/
public function setType($type = null)
{
$this->type = $type;
return $this;
}
/**
* Gets message.
*
* @return string|null
*/
public function getMessage()
{
return $this->message;
}
/**
* Sets message.
*
* @param string|null $message
*
* @return $this
*/
public function setMessage($message = null)
{
$this->message = $message;
return $this;
}
}