SCPWechatPayDetails

Objective-C


@interface SCPWechatPayDetails : NSObject <SCPJSONDecodable>

Swift

class WechatPayDetails : NSObject, JSONDecodable

Contains details about a user’s wechat_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 WeChat Pay 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;