We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c9b978 commit 2e6f532Copy full SHA for 2e6f532
README.md
@@ -121,8 +121,13 @@ func (u *UsersService) ListUsers(pagination Paginate) ([]User, error) {
121
}
122
```
123
124
-Note: For query parameters, only a limited set of field types are currently
125
-supported, and embedded structs are not supported.
+#### Query parameter decoding
+
126
+For query parameters, embedded structs are not supported and fields may
127
+(currently) only be of types `bool`, `int` and `string`.
128
129
+The name of the query parameter will be the name of the Go field with the first
130
+letter lower-cased. This can be overridden with the field tag `query:"<name>"`.
131
132
## Response signature
133
0 commit comments