2017-12-07 14:00:40 +08:00
|
|
|
<?php
|
2018-01-04 11:34:23 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* This file is part of the NelmioApiDocBundle package.
|
|
|
|
*
|
|
|
|
* (c) Nelmio
|
|
|
|
*
|
|
|
|
* For the full copyright and license information, please view the LICENSE
|
|
|
|
* file that was distributed with this source code.
|
2017-12-07 14:00:40 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Nelmio\ApiDocBundle\Tests\Functional\Entity;
|
|
|
|
|
|
|
|
use JMS\Serializer\Annotation as Serializer;
|
2018-03-17 19:23:29 +01:00
|
|
|
use Nelmio\ApiDocBundle\Annotation\Model;
|
2018-01-24 15:20:20 +01:00
|
|
|
use Swagger\Annotations as SWG;
|
2017-12-07 14:00:40 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @Serializer\ExclusionPolicy("all")
|
2018-03-17 19:23:29 +01:00
|
|
|
* @SWG\Definition(
|
|
|
|
* required={"id", "user"},
|
|
|
|
* @SWG\Property(property="virtual", ref=@Model(type=JMSUser::class))
|
|
|
|
* )
|
2017-12-07 14:00:40 +08:00
|
|
|
*/
|
|
|
|
class JMSComplex
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @Serializer\Type("integer")
|
|
|
|
* @Serializer\Expose
|
|
|
|
* @Serializer\Groups({"list"})
|
|
|
|
*/
|
|
|
|
private $id;
|
|
|
|
|
|
|
|
/**
|
2018-03-17 19:23:29 +01:00
|
|
|
* @SWG\Property(ref=@Model(type=JMSUser::class))
|
2017-12-07 14:00:40 +08:00
|
|
|
* @Serializer\Expose
|
|
|
|
* @Serializer\Groups({"details"})
|
|
|
|
*/
|
|
|
|
private $user;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @Serializer\Type("string")
|
|
|
|
* @Serializer\Expose
|
|
|
|
* @Serializer\Groups({"list"})
|
|
|
|
*/
|
|
|
|
private $name;
|
|
|
|
}
|