BTPreferredPaymentMethodsResult.h 608 B

123456789101112131415161718192021222324252627
  1. #import <Foundation/Foundation.h>
  2. NS_ASSUME_NONNULL_BEGIN
  3. /**
  4. :nodoc:
  5. Contains information about which payment methods are preferred on the device.
  6. This class is currently in beta and may change in future releases.
  7. */
  8. @interface BTPreferredPaymentMethodsResult : NSObject
  9. /**
  10. :nodoc:
  11. True if PayPal is a preferred payment method. False otherwise.
  12. */
  13. @property (nonatomic, readonly, assign) BOOL isPayPalPreferred;
  14. /**
  15. :nodoc:
  16. True if Venmo app is installed on the customer's device. False otherwise.
  17. */
  18. @property (nonatomic, readonly, assign) BOOL isVenmoPreferred;
  19. @end
  20. NS_ASSUME_NONNULL_END