StopReason

public enum StopReason : String, CustomStringConvertible

Recording stop reason.

  • Recording has stopped on user request.

    Declaration

    Swift

    case userRequest
  • Recording has stopped because of a camera configuration change.

    Declaration

    Swift

    case configurationChange
  • Recording has stopped due to insufficient storage space on the drone.

    Declaration

    Swift

    case errorInsufficientStorageSpace
  • Recording has stopped because storage is too slow.

    Declaration

    Swift

    case errorInsufficientStorageSpeed
  • Recording has stopped due to an internal error.

    Declaration

    Swift

    case errorInternal
  • Debug description.

    Declaration

    Swift

    public var description: String { get }