Skip to content

Commit aed61b7

Browse files
fix: use correct format for nested and array query params
1 parent c48c11d commit aed61b7

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.stats.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 22
22
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/stainless-commons%2Fstripe-minimal-d7db5d2f2f83e89d00e8529a1b6d4ed4746bd306d0e6ffba02f321b576dcc340.yml
33
openapi_spec_hash: e09fbe83a958ffba517bce207e9f9dc1
4-
config_hash: 957cd4dc5cc7bbb0ca9a15611bb95cdc
4+
config_hash: 4435a4ca740728c29979cd8f628c10df

src/stainless_commons_stripe/_client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ def with_streaming_response(self) -> StripeWithStreamedResponse:
204204
@property
205205
@override
206206
def qs(self) -> Querystring:
207-
return Querystring(array_format="comma")
207+
return Querystring(array_format="brackets")
208208

209209
@property
210210
@override
@@ -457,7 +457,7 @@ def with_streaming_response(self) -> AsyncStripeWithStreamedResponse:
457457
@property
458458
@override
459459
def qs(self) -> Querystring:
460-
return Querystring(array_format="comma")
460+
return Querystring(array_format="brackets")
461461

462462
@property
463463
@override

0 commit comments

Comments
 (0)