mirror of
https://github.com/appwrite/sdk-for-swift.git
synced 2026-06-06 19:27:57 +00:00
12 lines
260 B
Swift
12 lines
260 B
Swift
import Foundation
|
|
|
|
public enum OAuth2GooglePrompt: String, Codable, CustomStringConvertible {
|
|
case `none` = "none"
|
|
case consent = "consent"
|
|
case selectAccount = "select_account"
|
|
|
|
public var description: String {
|
|
return rawValue
|
|
}
|
|
}
|