JSON本体でいくつかのパラメータをオプションにしたい。phpdocs を作成し、パラメーターを null に設定しました。
/**
* Create a new text
*
* @param int $product_id product id
* @param int $template_id {@from body} template id
* @param string $language {@from body} the language of the text
* @param string $name {@from body} product name
*
* @url POST {product_id}/texts
*/
public function postText($product_id, $template_id, $market_id = null)
{ }
しかし、レスラーは私に次のことを教えてくれます:
{
"error": {
"code": 400,
"message": "Bad Request: market_id is missing."
}
}
パラメータをオプションとして指定するにはどうすればよいですか?