    def $action_name$(self, action=params.Action()$combined_method_params$):
$docs$
        url = '/$url$'

        result = self.__getProxy().request(
            method='$method$',
            url=UrlHelper.appendParameters(
                url=UrlHelper.replace(
                    url,
                    $url_params$
                ),
                args=$url_query_params$
            ),
            body=ParseHelper.toXml(action),
            headers=$headers_map_params_str$
        )

        return result

