CollectionType
public enum CollectionType : RawRepresentable, Codable
Describes the type of data store returned when executing listCollections
.
-
Specifies that the data store returned is a collection.
Declaration
Swift
case collection
-
Specifies that the data store returned is a view.
Declaration
Swift
case view
-
For an unknown value. For forwards compatibility, no error will be thrown when an unknown value is provided.
Declaration
Swift
case other(String)
-
Declaration
Swift
public var rawValue: String { get }
-
Declaration
Swift
public init(rawValue: String)