-
The name of the item.
Declaration
Swift
@objc dynamic var name: String?
-
Repository associated with this item, e.g. used by Pod to start appropriate integrator container.
Declaration
Swift
@objc dynamic var repository: String?
-
A Memri query that retrieves a set of Items from the Pod database.
Declaration
Swift
@objc dynamic var query: String?
-
The progress an Item made. Encoded as a float number from 0.0 to 1.0.
Declaration
Swift
let progress: RealmOptional<Double>
-
The type of data this Item targets.
Declaration
Swift
@objc dynamic var targetDataType: String?
-
The status of a run, (running, error, etc).
Declaration
Swift
@objc dynamic var runStatus: String?
-
Description of the error
Declaration
Swift
@objc dynamic var errorMessage: String?
-
Message describing the progress of a process.
Declaration
Swift
@objc dynamic var progressMessage: String?
-
An Indexer is used to enrich data in the Pod database.
Declaration
Swift
var indexer: Indexer? { get }
-
Undocumented
Declaration
Swift
public required convenience init(from decoder: Decoder) throws
-
Undocumented
Declaration
Swift
convenience init( name: String? = nil, query: String? = nil, indexer: Indexer? = nil, progress: Double? = nil )