Files
sdk-for-swift/Sources/AppwriteEnums/ProjectOAuth2GooglePrompt.swift

12 lines
267 B
Swift

import Foundation
public enum ProjectOAuth2GooglePrompt: String, Codable, CustomStringConvertible {
case `none` = "none"
case consent = "consent"
case selectAccount = "select_account"
public var description: String {
return rawValue
}
}