RCTransaction

@interface RCTransaction : NSObject

@property (nonatomic, readonly, copy) NSString *revenueCatId;
@property (nonatomic, readonly, copy) NSString *productId;
@property (nonatomic, readonly, copy) NSDate *purchaseDate;

- (instancetype)initWithTransactionId:(NSString *)transactionId
                            productId:(NSString *)productId
                         purchaseDate:(NSDate *)purchaseDate NS_DESIGNATED_INITIALIZER;
- (instancetype)init NS_UNAVAILABLE;
+ (instancetype)new NS_UNAVAILABLE;

@end

Undocumented