(self)
| 357 | return AccountLogoutRequest(auth_info) |
| 358 | |
| 359 | def to_dict(self) -> dict: |
| 360 | result: dict = {} |
| 361 | result["authInfo"] = (self.auth_info).to_dict() |
| 362 | return result |
| 363 | |
| 364 | # Experimental: this type is part of an experimental API and may change or be removed. |
| 365 | @dataclass |