BTCardClient_Internal.h 535 B

1234567891011121314151617181920212223
  1. #if __has_include(<Braintree/BraintreeCard.h>)
  2. #import <Braintree/BTCardClient.h>
  3. #else
  4. #import <BraintreeCard/BTCardClient.h>
  5. #endif
  6. NS_ASSUME_NONNULL_BEGIN
  7. @interface BTCardClient ()
  8. /**
  9. Exposed for testing to get the instance of BTAPIClient
  10. */
  11. @property (nonatomic, strong, readwrite) BTAPIClient *apiClient;
  12. /**
  13. Convenience helper method for creating friendlier, more human-readable userInfo dictionaries for 422 HTTP errors
  14. */
  15. + (NSDictionary *)validationErrorUserInfo:(NSDictionary *)userInfo;
  16. @end
  17. NS_ASSUME_NONNULL_END