(self)
| 5857 | return RemoteControlTransferResult(status, transferred) |
| 5858 | |
| 5859 | def to_dict(self) -> dict: |
| 5860 | result: dict = {} |
| 5861 | result["status"] = (self.status).to_dict() |
| 5862 | result["transferred"] = from_bool(self.transferred) |
| 5863 | return result |
| 5864 | |
| 5865 | # Experimental: this type is part of an experimental API and may change or be removed. |
| 5866 | class RemoteSessionMode(Enum): |