ImporterRun

public class ImporterRun : Item

A run of a certain Importer, that defines the details of the specific import.

  • 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?
  • 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 the data this Item acts on.

    Declaration

    Swift

    @objc
    dynamic var dataType: String?
  • Username of an importer.

    Declaration

    Swift

    @objc
    dynamic var username: String?
  • Password for a username.

    Declaration

    Swift

    @objc
    dynamic var password: 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 Importer is used to import data from an external source to the Pod database.

    Declaration

    Swift

    var importer: Importer? { get }
  • Undocumented

    Declaration

    Swift

    public required convenience init(from decoder: Decoder) throws