BRPaymentMethod
Objective-C
@interface BRPaymentMethod : NSObject <BRSerializable>
Swift
class BRPaymentMethod : NSObject, BRSerializable
Described a payment method and the amount charged to that payment method
-
The payment method (i.e. Cash, Credit, Debit, Gift Card, Check, etc), if any
Declaration
Objective-C
@property (nonatomic, strong, readonly) BRStringValue *method;
Swift
var method: BRStringValue! { get }
-
The card type (i.e. Visa, American Express, Mastercard, or Discover), if any
Declaration
Objective-C
@property (nonatomic, strong, readonly) BRStringValue *cardType;
Swift
var cardType: BRStringValue! { get }
-
The card issuer (i.e. Target, Walmart, etc), if any
Declaration
Objective-C
@property (nonatomic, strong, readonly) BRStringValue *cardIssuer;
Swift
var cardIssuer: BRStringValue! { get }
-
The amount charged to this payment method
Declaration
Objective-C
@property (nonatomic, strong, readonly) BRFloatValue *amount;
Swift
var amount: BRFloatValue! { get }