CollectionObject

open class CollectionObject : CollectionObjectProtocol

A collection object with basic properties of CollectionObjectProtocol. You can inherit this class with extra properties on your own CollectionObject type.

Note

Please, check the CollectionObjectProtocol documentation to implement your User subclass properly.
  • Undocumented

    See more

    Declaration

    Swift

    public enum CollectionObjectCodingKeys : String, CodingKey
  • Undocumented

    See more

    Declaration

    Swift

    public enum DataCodingKeys : String, CodingKey
  • Declaration

    Swift

    public let collectionName: String
  • id

    Declaration

    Swift

    public var id: String?
  • Declaration

    Swift

    public var foreignId: String?
  • Declaration

    Swift

    public var created: Date
  • Declaration

    Swift

    public var updated: Date
  • Undocumented

    Declaration

    Swift

    required public init(collectionName: String, id: String? = nil)
  • Declaration

    Swift

    required public init(from decoder: Decoder) throws
  • Declaration

    Swift

    open func encode(to encoder: Encoder) throws
  • Declaration

    Swift

    public static func missed() -> Self
  • Declaration

    Swift

    public var isMissedReference: Bool { get }