File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -61,6 +61,8 @@ class Request:
61
61
:type exclusive: str | [str] | None
62
62
:param deserialize: Whether the response body can be deserialized.
63
63
:type deserialize: bool
64
+ :param driverFlags: List of flags for the driver
65
+ :type driverFlags: list
64
66
65
67
:ivar method: HTTP method in lowercase (e.g. "post").
66
68
:vartype method: str
@@ -82,6 +84,8 @@ class Request:
82
84
:vartype exclusive: str | [str] | None
83
85
:ivar deserialize: Whether the response body can be deserialized.
84
86
:vartype deserialize: bool
87
+ :ivar driverFlags: List of flags for the driver
88
+ :vartype driverFlags: list
85
89
"""
86
90
87
91
__slots__ = (
@@ -94,6 +98,7 @@ class Request:
94
98
"write" ,
95
99
"exclusive" ,
96
100
"deserialize" ,
101
+ "driverFlags" ,
97
102
)
98
103
99
104
def __init__ (
You can’t perform that action at this time.
0 commit comments