File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ class Encoding(BaseModel):
59
59
the request body media type is not `application/x-www-form-urlencoded`.
60
60
"""
61
61
62
- explode : bool = False
62
+ explode : Optional [ bool ] = None
63
63
"""
64
64
When this is true, property values of type `array` or `object` generate separate
65
65
parameters for each value of the array, or key-value-pair of the map.
Original file line number Diff line number Diff line change @@ -115,7 +115,7 @@ class ParameterBase(BaseModel):
115
115
- for `cookie` - `form`.
116
116
"""
117
117
118
- explode : bool = False
118
+ explode : Optional [ bool ] = None
119
119
"""
120
120
When this is true, parameter values of type `array` or `object` generate separate
121
121
parameters for each value of the array or key-value pair of the map.
Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ class Encoding(BaseModel):
61
61
[`contentType`](#encodingContentType) (implicit or explicit) SHALL be ignored.
62
62
"""
63
63
64
- explode : bool = False
64
+ explode : Optional [ bool ] = None
65
65
"""
66
66
When this is true, property values of type `array` or `object` generate separate
67
67
parameters for each value of the array, or key-value-pair of the map.
Original file line number Diff line number Diff line change @@ -115,7 +115,7 @@ class ParameterBase(BaseModel):
115
115
- for `cookie` - `form`.
116
116
"""
117
117
118
- explode : bool = False
118
+ explode : Optional [ bool ] = None
119
119
"""
120
120
When this is true, parameter values of type `array` or `object` generate separate
121
121
parameters for each value of the array or key-value pair of the map.
You can’t perform that action at this time.
0 commit comments