Objectable
public protocol Objectable : ParseType, Decodable
The base protocol for a ParseObject
.
Note
You should not use this directly and instead useParseObject
.
-
className
Default implementationThe class name of the object.
Default Implementation
The class name of the object.
Declaration
Swift
static var className: String { get }
-
The id of the object.
Declaration
Swift
var objectId: String? { get set }
-
When the object was created.
Declaration
Swift
var createdAt: Date? { get set }
-
When the object was last updated.
Declaration
Swift
var updatedAt: Date? { get set }
-
The ACL for this object.
Declaration
Swift
var ACL: ParseACL? { get set }
-
className
Extension methodThe class name of the object.
Declaration
Swift
public var className: String { get }
-
isSaved
Extension methodSpecifies if a
ParseObject
has been saved.Declaration
Swift
public var isSaved: Bool { get }