/**
* @SWG\Get(path="/api/users/{id}",
* tags={"User"},
* summary="",
* @SWG\Parameter(
* name="Authorization",
* in="header",
* description="",
* required=true,
* type="string"
* ),
* @SWG\Parameter(
* name="id",
* in="path",
* description="Укажите ID",
* required=true,
* type="string"
* ),
* @SWG\Response(
* response = 200,
* description = "Ok",
* @SWG\Schema(ref = "#/")
* ),
* @SWG\Response(
* response = 400,
* description = "Bad Request",
* @SWG\Schema(ref = "#/")
* ),
* @SWG\Response(
* response = 404,
* description = "Not Found",
* @SWG\Schema(ref = "#/")
* ),
* @SWG\Response(
* response = 500,
* description = "Internal Server Error"
* )
* )
*/