BTThreeDSecureV2BaseCustomization.h 589 B

123456789101112131415161718192021222324252627
  1. #import <Foundation/Foundation.h>
  2. NS_ASSUME_NONNULL_BEGIN
  3. /**
  4. * Base customization options for 3D Secure 2 flows.
  5. */
  6. @interface BTThreeDSecureV2BaseCustomization : NSObject
  7. /**
  8. * @property textFontName Font type for the UI element.
  9. */
  10. @property (nonatomic, strong) NSString* textFontName;
  11. /**
  12. * @property textColor Color code in Hex format. For example, the color code can be “#999999”.
  13. */
  14. @property (nonatomic, strong) NSString* textColor;
  15. /**
  16. * @property textFontSize Font size for the UI element.
  17. */
  18. @property (nonatomic) int textFontSize;
  19. @end
  20. NS_ASSUME_NONNULL_END