(obj: Any)
| 16379 | |
| 16380 | @staticmethod |
| 16381 | def from_dict(obj: Any) -> 'UIElicitationResponse': |
| 16382 | assert isinstance(obj, dict) |
| 16383 | action = UIElicitationResponseAction(obj.get("action")) |
| 16384 | content = from_union([lambda x: from_dict(lambda x: from_union([from_float, from_bool, lambda x: from_list(from_str, x), from_str], x), x), from_none], obj.get("content")) |
| 16385 | return UIElicitationResponse(action, content) |
| 16386 | |
| 16387 | def to_dict(self) -> dict: |
| 16388 | result: dict = {} |
nothing calls this directly
no test coverage detected