OperationResult

public protocol OperationResult

Common result of any operation, usually async

  • True if operation was successful

    Declaration

    Swift

    var success: Bool { get }
  • Undocumented

    Declaration

    Swift

    var errorcode: String? { get }
  • Error if operation was not successful

    Note

    Can be nil if success is true

    Declaration

    Swift

    var message: String? { get }