(obj: Any)
| 690 | |
| 691 | @staticmethod |
| 692 | def from_dict(obj: Any) -> 'CanvasActionInvokeRequest': |
| 693 | assert isinstance(obj, dict) |
| 694 | action_name = from_str(obj.get("actionName")) |
| 695 | instance_id = from_str(obj.get("instanceId")) |
| 696 | input = obj.get("input") |
| 697 | return CanvasActionInvokeRequest(action_name, instance_id, input) |
| 698 | |
| 699 | def to_dict(self) -> dict: |
| 700 | result: dict = {} |
nothing calls this directly
no test coverage detected