SQRDTenderCashDetails

@interface SQRDTenderCashDetails : NSObject <NSCopying>

Represents the details related to a cash payment.

  • The total amount of cash provided to pay for the transaction, before change is given.

    Declaration

    Objective-C

    @property (readonly, nonatomic, nonnull) SQRDMoney *buyerTenderedMoney;

    Swift

    var buyerTenderedMoney: SQRDMoney { get }
  • The total amount of cash returned during the transaction as change.

    Declaration

    Objective-C

    @property (readonly, nonatomic, nonnull) SQRDMoney *changeBackMoney;

    Swift

    var changeBackMoney: SQRDMoney { get }