You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We have an operation that just returns 200 without body content:
op hello(): OkResponse;
usually we write this in a way that the op returns void, but because of this issue , I cannot do it.
In the generation result, OkResponse is generated as an empty model, this should not happen especially the operation with OkResponse
is generated as this without a return body type:
public interface ISayHi
{
Task HelloAsync();
}
The text was updated successfully, but these errors were encountered:
We have an operation that just returns 200 without body content:
usually we write this in a way that the op returns
void
, but because of this issue , I cannot do it.In the generation result,
OkResponse
is generated as an empty model, this should not happen especially the operation withOkResponse
is generated as this without a return body type:
The text was updated successfully, but these errors were encountered: