mirror of
https://github.com/retailcrm/NelmioApiDocBundle.git
synced 2025-02-03 08:09:25 +03:00
48 lines
1009 B
PHP
48 lines
1009 B
PHP
<?php
|
|
|
|
/*
|
|
* 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.
|
|
*/
|
|
|
|
namespace Nelmio\ApiDocBundle\Tests\Functional\Entity;
|
|
|
|
use JMS\Serializer\Annotation as Serializer;
|
|
use Nelmio\ApiDocBundle\Annotation\Model;
|
|
use Swagger\Annotations as SWG;
|
|
|
|
/**
|
|
* @Serializer\ExclusionPolicy("all")
|
|
* @SWG\Definition(
|
|
* required={"id", "user"},
|
|
* @SWG\Property(property="virtual", ref=@Model(type=JMSUser::class))
|
|
* )
|
|
*/
|
|
class JMSComplex
|
|
{
|
|
/**
|
|
* @Serializer\Type("integer")
|
|
* @Serializer\Expose
|
|
* @Serializer\Groups({"list"})
|
|
*/
|
|
private $id;
|
|
|
|
/**
|
|
* @SWG\Property(ref=@Model(type=JMSUser::class))
|
|
* @Serializer\Expose
|
|
* @Serializer\Groups({"details"})
|
|
*/
|
|
private $user;
|
|
|
|
/**
|
|
* @Serializer\Type("string")
|
|
* @Serializer\Expose
|
|
* @Serializer\Groups({"list"})
|
|
*/
|
|
private $name;
|
|
}
|