mirror of
https://github.com/appwrite/sdk-for-swift.git
synced 2026-04-07 19:17:48 +00:00
48 lines
1.2 KiB
Swift
48 lines
1.2 KiB
Swift
import Foundation
|
|
|
|
public enum OAuthProvider: String, CustomStringConvertible {
|
|
case amazon = "amazon"
|
|
case apple = "apple"
|
|
case auth0 = "auth0"
|
|
case authentik = "authentik"
|
|
case autodesk = "autodesk"
|
|
case bitbucket = "bitbucket"
|
|
case bitly = "bitly"
|
|
case box = "box"
|
|
case dailymotion = "dailymotion"
|
|
case discord = "discord"
|
|
case disqus = "disqus"
|
|
case dropbox = "dropbox"
|
|
case etsy = "etsy"
|
|
case facebook = "facebook"
|
|
case figma = "figma"
|
|
case github = "github"
|
|
case gitlab = "gitlab"
|
|
case google = "google"
|
|
case linkedin = "linkedin"
|
|
case microsoft = "microsoft"
|
|
case notion = "notion"
|
|
case oidc = "oidc"
|
|
case okta = "okta"
|
|
case paypal = "paypal"
|
|
case paypalSandbox = "paypalSandbox"
|
|
case podio = "podio"
|
|
case salesforce = "salesforce"
|
|
case slack = "slack"
|
|
case spotify = "spotify"
|
|
case stripe = "stripe"
|
|
case tradeshift = "tradeshift"
|
|
case tradeshiftBox = "tradeshiftBox"
|
|
case twitch = "twitch"
|
|
case wordpress = "wordpress"
|
|
case yahoo = "yahoo"
|
|
case yammer = "yammer"
|
|
case yandex = "yandex"
|
|
case zoho = "zoho"
|
|
case zoom = "zoom"
|
|
|
|
public var description: String {
|
|
return rawValue
|
|
}
|
|
}
|