我在Symfony Flex中有一个API,该文档通过使用NelmioApiDocBundle进行了记录。在文档中,我想显示parentPOSId
参数可以是int或null。我该怎么办?
这是我的控制器注释:
/**
*
* @FOSRest\Post("/pos/parent")
*
* @SWG\Post(
* tags={"pos_parent"},
* description="set POS parent",
* @SWG\Response(
* response=200,
* description="Parent was set",
* examples={
* "application/json":{
* "POSId":2,
* "parentPOSId": 1
* }
* }
* ),
*
* @SWG\Parameter(
* name="form",
* in="body",
* description="Action parameters",
* @Model(type=App\Domain\Port\POSParent\SetPOSParentInterface::class)
* )
* )
*
*/
这是我的模特
namespace App\Domain\Port\POSParent;
interface SetPOSParentInterface
{
public function getPOSId():int;
public function getParentPOSId():?int;
}