This class represents EmailData. The reference can be found here http://docs.github.com/en/rest/reference/users#emails The OpenAPI schema can be found at - /components/schemas/email
| 126 | |
| 127 | |
| 128 | class EmailData(NamedTuple): |
| 129 | """ |
| 130 | This class represents EmailData. |
| 131 | |
| 132 | The reference can be found here |
| 133 | http://docs.github.com/en/rest/reference/users#emails |
| 134 | |
| 135 | The OpenAPI schema can be found at |
| 136 | |
| 137 | - /components/schemas/email |
| 138 | |
| 139 | """ |
| 140 | |
| 141 | email: str |
| 142 | primary: bool |
| 143 | verified: bool |
| 144 | visibility: str |
| 145 | |
| 146 | |
| 147 | class AuthenticatedUser(CompletableGithubObject): |
no outgoing calls
no test coverage detected
searching dependent graphs…