BTThreeDSecurePostalAddress_Internal.h 741 B

1234567891011121314151617181920212223242526
  1. #if __has_include(<Braintree/BraintreeThreeDSecure.h>)
  2. #import <Braintree/BTThreeDSecurePostalAddress.h>
  3. #else
  4. #import <BraintreeThreeDSecure/BTThreeDSecurePostalAddress.h>
  5. #endif
  6. NS_ASSUME_NONNULL_BEGIN
  7. @interface BTThreeDSecurePostalAddress ()
  8. /**
  9. The postal address as parameters which can be used for API requests.
  10. @return An NSDictionary representing the postal address.
  11. */
  12. - (NSDictionary *)asParameters;
  13. /**
  14. The postal address as parameters which can be used for API requests.
  15. The prefix value will be prepended to each key in the return dictionary
  16. @return An NSDictionary representing the postal address.
  17. */
  18. - (NSDictionary<NSString *, NSString *> *)asParametersWithPrefix:(NSString *)prefix;
  19. @end
  20. NS_ASSUME_NONNULL_END