mirror of
https://github.com/appwrite/sdk-for-swift.git
synced 2026-04-07 19:17:48 +00:00
22 lines
633 B
Swift
22 lines
633 B
Swift
import Foundation
|
|
|
|
public enum Name: String, CustomStringConvertible {
|
|
case v1Database = "v1-database"
|
|
case v1Deletes = "v1-deletes"
|
|
case v1Audits = "v1-audits"
|
|
case v1Mails = "v1-mails"
|
|
case v1Functions = "v1-functions"
|
|
case v1StatsResources = "v1-stats-resources"
|
|
case v1StatsUsage = "v1-stats-usage"
|
|
case v1Webhooks = "v1-webhooks"
|
|
case v1Certificates = "v1-certificates"
|
|
case v1Builds = "v1-builds"
|
|
case v1Screenshots = "v1-screenshots"
|
|
case v1Messaging = "v1-messaging"
|
|
case v1Migrations = "v1-migrations"
|
|
|
|
public var description: String {
|
|
return rawValue
|
|
}
|
|
}
|