BTThreeDSecurePostalAddress_Internal.h 601 B

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