We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 90f0dc6 commit bc36d99Copy full SHA for bc36d99
2 files changed
butter/mas/packets/packet.py
@@ -60,6 +60,7 @@ def _generateEmptyResponse(errorType='unknown') -> Response:
60
parameters: null
61
},
62
response: {
63
+ id: "-1",
64
status: "Failed",
65
data: null,
66
metadata: {
butter/mas/utils/response_parser.py
@@ -4,6 +4,7 @@
4
5
6
class ResponseDataPacket:
7
+ id: str #: packet id
8
status: str #: packet execution status
9
data: Union[List[ResponseDataPacket], str] #: packet execution data
10
metadata: MetadataDataPacket #: packet execution metadata
0 commit comments