(obj: Any)
| 226 | |
| 227 | @staticmethod |
| 228 | def from_dict(obj: Any) -> 'AccountGetQuotaRequest': |
| 229 | assert isinstance(obj, dict) |
| 230 | git_hub_token = from_union([from_str, from_none], obj.get("gitHubToken")) |
| 231 | return AccountGetQuotaRequest(git_hub_token) |
| 232 | |
| 233 | def to_dict(self) -> dict: |
| 234 | result: dict = {} |
nothing calls this directly
no test coverage detected