Issue description:
Body missing in generated code for extensible enum, fixed enum, empty model and dictionary. the detailed error code is shown as following:

Suggestion:
Update the code and add body to return value as following:
export function _putKnownValueSend(
context: Client,
body: DaysOfWeekEnum,
options: PutKnownValueOptions = { requestOptions: {} }
): StreamableMethod<PutKnownValue204Response> {
return context
.path("/type/enum/fixed/string/known-value")
.put({ ...operationOptionsToRequestParameters(options), body });
}
@qiaozha for notification.
Issue description:

Body missing in generated code for extensible enum, fixed enum, empty model and dictionary. the detailed error code is shown as following:
Suggestion:
Update the code and add
bodyto return value as following:@qiaozha for notification.