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
For example the parameter we have for this checkNameAvailibitity is
/**
* Description for Check if a resource name is available.
* @param name Resource name to verify.
* @param typeParam Resource type used for verification.
* @param options The options parameters.
*/
checkNameAvailability(
name: string,
typeParam: CheckNameResourceTypes,
options?: CheckNameAvailabilityOptionalParams
): Promise<CheckNameAvailabilityResponse> {
return this.sendOperationRequest(
{ name, typeParam, options },
checkNameAvailabilityOperationSpec
);
}
Here the typeParam is renamed from the reserved word type. but in the generated Mappers.
For example the parameter we have for this checkNameAvailibitity is
Here the typeParam is renamed from the reserved word type. but in the generated Mappers.
we are still seeing type as the key, which cause the generated code can't work
This is original come from our customer reported Azure/azure-sdk-for-js#20728
The text was updated successfully, but these errors were encountered: