@@ -23,12 +23,14 @@ class CommandResults:
23
23
inter_state_channel_results (Union[Unset, list['InterStateChannelResult']]):
24
24
timer_results (Union[Unset, list['TimerResult']]):
25
25
state_start_api_succeeded (Union[Unset, bool]):
26
+ state_wait_until_failed (Union[Unset, bool]):
26
27
"""
27
28
28
29
signal_results : Union [Unset , list ["SignalResult" ]] = UNSET
29
30
inter_state_channel_results : Union [Unset , list ["InterStateChannelResult" ]] = UNSET
30
31
timer_results : Union [Unset , list ["TimerResult" ]] = UNSET
31
32
state_start_api_succeeded : Union [Unset , bool ] = UNSET
33
+ state_wait_until_failed : Union [Unset , bool ] = UNSET
32
34
additional_properties : dict [str , Any ] = _attrs_field (init = False , factory = dict )
33
35
34
36
def to_dict (self ) -> dict [str , Any ]:
@@ -55,6 +57,8 @@ def to_dict(self) -> dict[str, Any]:
55
57
56
58
state_start_api_succeeded = self .state_start_api_succeeded
57
59
60
+ state_wait_until_failed = self .state_wait_until_failed
61
+
58
62
field_dict : dict [str , Any ] = {}
59
63
field_dict .update (self .additional_properties )
60
64
field_dict .update ({})
@@ -66,6 +70,8 @@ def to_dict(self) -> dict[str, Any]:
66
70
field_dict ["timerResults" ] = timer_results
67
71
if state_start_api_succeeded is not UNSET :
68
72
field_dict ["stateStartApiSucceeded" ] = state_start_api_succeeded
73
+ if state_wait_until_failed is not UNSET :
74
+ field_dict ["stateWaitUntilFailed" ] = state_wait_until_failed
69
75
70
76
return field_dict
71
77
@@ -99,11 +105,14 @@ def from_dict(cls: type[T], src_dict: Mapping[str, Any]) -> T:
99
105
100
106
state_start_api_succeeded = d .pop ("stateStartApiSucceeded" , UNSET )
101
107
108
+ state_wait_until_failed = d .pop ("stateWaitUntilFailed" , UNSET )
109
+
102
110
command_results = cls (
103
111
signal_results = signal_results ,
104
112
inter_state_channel_results = inter_state_channel_results ,
105
113
timer_results = timer_results ,
106
114
state_start_api_succeeded = state_start_api_succeeded ,
115
+ state_wait_until_failed = state_wait_until_failed ,
107
116
)
108
117
109
118
command_results .additional_properties = d
0 commit comments