We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
code
result
It can be seen that HttpOperationPathParameter.allowReserved is true.
HttpOperationPathParameter.allowReserved
true
But if dev call getPathParamOptions on the HttpOperationPathParameter.param, the result is undefined.
getPathParamOptions
HttpOperationPathParameter.param
undefined
This appears to be an inconsistency. It does not block anything. We just use HttpOperationPathParameter.allowReserved.
URI template operation like below
@route("/contoso/{+group}") interface ServerOp { get(group: string): OkResponse | NoContentResponse; }
The text was updated successfully, but these errors were encountered:
This is by design this is just the decorator accessor please get the resolved op and parameters with getHttpOperation
Sorry, something went wrong.
No branches or pull requests
Describe the bug
code
result
It can be seen that
HttpOperationPathParameter.allowReserved
istrue
.But if dev call
getPathParamOptions
on theHttpOperationPathParameter.param
, the result isundefined
.This appears to be an inconsistency. It does not block anything. We just use
HttpOperationPathParameter.allowReserved
.Reproduction
URI template operation like below
Checklist
The text was updated successfully, but these errors were encountered: