Enumeration
AuthenticationType
public enum AuthenticationType: Sendable, Equatable
The methods to use to authenticate.
Relationships
Conforms To
Equatable
Sendable
Enumeration Cases
credentials
case credentials(username: String, password: String)
Authenticate using your username and password.
idAndSecret
case idAndSecret(clientID: String, clientSecret: String, username: String)
Authenticate using your Client ID and Client Secret.
webBrowser
case webBrowser(code: String, clientID: String, clientSecret: String)
Authenticate using a code obtained via a web browser.