{{!--
Return the content of the response.

@param this CodegenContent
--}}
{{#if (isContentJson .)}}
return response.json() as any;
{{else if (isBinary schema)}}
return response.blob();
{{else if (isString schema)}}
return response.text();
{{else}}
return response; /* Unsupported mimeType */
{{/if}}
