8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0de7d51 commit 2219954Copy full SHA for 2219954
arango/request.py
@@ -61,6 +61,8 @@ class Request:
61
:type exclusive: str | [str] | None
62
:param deserialize: Whether the response body can be deserialized.
63
:type deserialize: bool
64
+ :param driverFlags: List of flags for the driver
65
+ :type driverFlags: list
66
67
:ivar method: HTTP method in lowercase (e.g. "post").
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.
86
:vartype deserialize: bool
87
+ :ivar driverFlags: List of flags for the driver
88
+ :vartype driverFlags: list
89
"""
90
91
__slots__ = (
@@ -94,6 +98,7 @@ class Request:
94
98
"write",
95
99
"exclusive",
96
100
"deserialize",
101
+ "driverFlags",
97
102
)
103
104
def __init__(
0 commit comments