(self)
| 231 | return AccountGetQuotaRequest(git_hub_token) |
| 232 | |
| 233 | def to_dict(self) -> dict: |
| 234 | result: dict = {} |
| 235 | if self.git_hub_token is not None: |
| 236 | result["gitHubToken"] = from_union([from_str, from_none], self.git_hub_token) |
| 237 | return result |
| 238 | |
| 239 | # Experimental: this type is part of an experimental API and may change or be removed. |
| 240 | @dataclass |
nothing calls this directly
no test coverage detected