BTPreferredPaymentMethodsResult_Internal.h 489 B

1234567891011121314151617181920
  1. #if __has_include(<Braintree/BraintreeCore.h>)
  2. #import <Braintree/BTPreferredPaymentMethodsResult.h>
  3. #else
  4. #import <BraintreeCore/BTPreferredPaymentMethodsResult.h>
  5. #endif
  6. @class BTJSON;
  7. NS_ASSUME_NONNULL_BEGIN
  8. @interface BTPreferredPaymentMethodsResult ()
  9. @property (nonatomic, assign) BOOL isPayPalPreferred;
  10. @property (nonatomic, assign) BOOL isVenmoPreferred;
  11. - (instancetype)initWithJSON:(BTJSON * _Nullable)json venmoInstalled:(BOOL)venmoInstalled;
  12. @end
  13. NS_ASSUME_NONNULL_END