我想使用swagger生成器制作一个SDK,但我需要将其标记为必填字段。
/**
* @SWG\Get(path="/articles",
* tags={"Article"},
* summary="Get all Articles",
* description="Show list of Articles",
* operationId="all",
* produces={"application/json"},
* @SWG\Parameter(
* name="name",
* in="form",
* type="string",
* ),
* @SWG\Parameter(
* name="description",
* in="form",
* type="string",
* ),
* @SWG\Response(response="200")
* ),
* )
*/
1条答案
按热度按时间r1zhe5dt1#
您需要添加字段
required