Open ArcturusZhang opened 2 weeks ago
In the contoso project, we have this interface generated:
public interface IWidgets { Task<WidgetSuite> CreateOrUpdateWidgetAsync(string apiVersion, string widgetName, "application/merge-patch+json" contentType, WidgetSuite resource); }
It misuses a string value as the type of contentType which is incorrect. This might be indicating the generator is not properly handling the literal types.
string
contentType
In the contoso project, we have this interface generated:
It misuses a
string
value as the type ofcontentType
which is incorrect. This might be indicating the generator is not properly handling the literal types.