BTThreeDSecureV1UICustomization.h 560 B

12345678910111213141516171819202122
  1. #import <Foundation/Foundation.h>
  2. NS_ASSUME_NONNULL_BEGIN
  3. /**
  4. UI Customization Options for 3D Secure 1 Flows.
  5. */
  6. @interface BTThreeDSecureV1UICustomization : NSObject
  7. /**
  8. Optional. Text displayed in the Redirect button after a 3DS1 challenge is completed in the browser.
  9. */
  10. @property (nonatomic, nullable, copy) NSString *redirectButtonText;
  11. /**
  12. Optional. Text displayed below the Redirect button after a 3DS1 challenge is completed in the browser.
  13. */
  14. @property (nonatomic, nullable, copy) NSString *redirectDescription;
  15. @end
  16. NS_ASSUME_NONNULL_END