SCPPaynowDetails
Objective-C
@interface SCPPaynowDetails : NSObject <SCPJSONDecodable>
Swift
class PaynowDetails : NSObject, JSONDecodable
Contains details about a user’s paynow payment
-
ID of the location that this transaction’s reader is assigned to.
Declaration
Objective-C
@property (nonatomic, readonly, nullable) NSString *location;
Swift
var location: String? { get }
-
ID of the reader this transaction was made on.
Declaration
Objective-C
@property (nonatomic, readonly, nullable) NSString *reader;
Swift
var reader: String? { get }
-
Reference number associated with this PayNow payment.
Declaration
Objective-C
@property (nonatomic, readonly, nullable) NSString *reference;
Swift
var reference: String? { get }
-
Unavailable
You cannot directly instantiate this class.
Declaration
Objective-C
- (nonnull instancetype)init;