SCPPaypayDetails

Objective-C


@interface SCPPaypayDetails : NSObject <SCPJSONDecodable>

Swift

class PaypayDetails : NSObject, JSONDecodable

Contains details about a user’s PayPay 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 }
  • Unavailable

    You cannot directly instantiate this class.

    Declaration

    Objective-C

    - (nonnull instancetype)init;