RecoveryInfo

public struct RecoveryInfo : Equatable

Information for flight plan execution recovery.

  • id

    Flight plan identifier.

    Declaration

    Swift

    public let id: String
  • Custom identifier.

    Declaration

    Swift

    public let customId: String
  • Index of the latest mission item completed.

    Declaration

    Swift

    public let latestMissionItemExecuted: UInt
  • Running time of the flightplan being executed.

    Declaration

    Swift

    public let runningTime: TimeInterval
  • First resource id of the latest media capture requested by the flightplan.

    Declaration

    Swift

    public let resourceId: String
  • Constructor.

    Declaration

    Swift

    public init(id: String, customId: String, latestMissionItemExecuted: UInt,
                runningTime: TimeInterval, resourceId: String)

    Parameters

    id

    flight plan identifier

    customId

    custom identifier

    latestMissionItemExecuted

    index of the latest mission item completed

    runningTime

    running time of the flightplan being executed

    resourceId

    first resource id of the latest media capture requested by the flightplan.