SCPAffirmDetails

Objective-C


@interface SCPAffirmDetails : NSObject <SCPJSONDecodable>

Swift

class AffirmDetails : NSObject, JSONDecodable

Contains details about a user’s affirm 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 }
  • Transaction ID of this particular Affirm transaction.

    Declaration

    Objective-C

    @property (nonatomic, readonly, nullable) NSString *transactionId;

    Swift

    var transactionId: String? { get }
  • Unavailable

    You cannot directly instantiate this class.

    Declaration

    Objective-C

    - (nonnull instancetype)init;