MNFUpcomingReconcileScore

Objective-C

@interface MNFUpcomingReconcileScore : MNFObject

Swift

class MNFUpcomingReconcileScore : MNFObject

The MNFUpcomingReconcileScore class contains information on how well a suggested upcoming transaction matches a real transaction.

Immutable properties

  • The id of the upcoming transaction.

    Declaration

    Objective-C

    @property (nonatomic, strong, readonly) NSNumber *_Nonnull upcomingId;

    Swift

    var upcomingId: NSNumber { get }
  • The id of the real transaction.

    Declaration

    Objective-C

    @property (nonatomic, strong, readonly) NSNumber *_Nonnull transactionId;

    Swift

    var transactionId: NSNumber { get }
  • The calculated confidence score from the system.

    Declaration

    Objective-C

    @property (nonatomic, strong, readonly) NSNumber *_Nonnull confidenceScore;

    Swift

    var confidenceScore: NSNumber { get }
  • Whether the user has confirmed the match.

    Declaration

    Objective-C

    @property (nonatomic, strong, readonly) NSNumber *_Nonnull isConfirmed;

    Swift

    var isConfirmed: NSNumber { get }