| 1234567891011121314151617181920 |
- #if __has_include(<Braintree/BraintreeCore.h>)
- #import <Braintree/BTPreferredPaymentMethodsResult.h>
- #else
- #import <BraintreeCore/BTPreferredPaymentMethodsResult.h>
- #endif
- @class BTJSON;
- NS_ASSUME_NONNULL_BEGIN
- @interface BTPreferredPaymentMethodsResult ()
- @property (nonatomic, assign) BOOL isPayPalPreferred;
- @property (nonatomic, assign) BOOL isVenmoPreferred;
- - (instancetype)initWithJSON:(BTJSON * _Nullable)json venmoInstalled:(BOOL)venmoInstalled;
- @end
- NS_ASSUME_NONNULL_END
|