mirror of
https://github.com/appwrite/sdk-for-swift.git
synced 2026-06-06 19:27:57 +00:00
12 lines
249 B
Swift
12 lines
249 B
Swift
import Foundation
|
|
|
|
public enum RelationMutate: String, Codable, CustomStringConvertible {
|
|
case cascade = "cascade"
|
|
case restrict = "restrict"
|
|
case setNull = "setNull"
|
|
|
|
public var description: String {
|
|
return rawValue
|
|
}
|
|
}
|