Credentials is used to facilitate the login process.
| 28 | |
| 29 | // Credentials is used to facilitate the login process. |
| 30 | type Credentials struct { |
| 31 | Audience string |
| 32 | ClientID string |
| 33 | DeviceCodeEndpoint string |
| 34 | OauthTokenEndpoint string |
| 35 | } |
| 36 | |
| 37 | type Result struct { |
| 38 | Tenant string |
nothing calls this directly
no outgoing calls
no test coverage detected