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:
6161 :type exclusive: str | [str] | None
6262 :param deserialize: Whether the response body can be deserialized.
6363 :type deserialize: bool
64+ :param driverFlags: List of flags for the driver
65+ :type driverFlags: list
6466
6567 :ivar method: HTTP method in lowercase (e.g. "post").
6668 :vartype method: str
@@ -82,6 +84,8 @@ class Request:
8284 :vartype exclusive: str | [str] | None
8385 :ivar deserialize: Whether the response body can be deserialized.
8486 :vartype deserialize: bool
87+ :ivar driverFlags: List of flags for the driver
88+ :vartype driverFlags: list
8589 """
8690
8791 __slots__ = (
@@ -94,6 +98,7 @@ class Request:
9498 "write" ,
9599 "exclusive" ,
96100 "deserialize" ,
101+ "driverFlags" ,
97102 )
98103
99104 def __init__ (
You can’t perform that action at this time.
0 commit comments