Skip to content

Commit 69392a5

Browse files
committed
kotlin: Fix casing for query param fields
1 parent 51a4a44 commit 69392a5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

templates/svix_lib_resource.kt.jinja

+1-1
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ class {{ resource_type_name }} internal constructor(token: String, options: Svix
9898

9999
{# query parameters, PostOptions -#}
100100
{% for p in op.query_params -%}
101-
options.{{ p.name }},
101+
options.{{ p.name | to_lower_camel_case }},
102102
{% endfor -%}
103103

104104
{# PostOptions -#}

0 commit comments

Comments
 (0)