TextBoxCustomization.h 729 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // TextBoxCustomization.h
  3. // CardinalEMVCoSDK
  4. //
  5. // Copyright © 2018 Cardinal Commerce. All rights reserved.
  6. //
  7. #import "Customization.h"
  8. /**
  9. * The TextBoxCustomization class provides methods for the 3DS Requestor App to pass text box customization parameters to the 3DS SDK.
  10. */
  11. @interface TextBoxCustomization : Customization
  12. /**
  13. * @property borderWidth Width (integer value) of the text box border.
  14. */
  15. @property int borderWidth;
  16. /**
  17. * @property borderColor Colour code in Hex format. For example, the colour code can be “#999999”.
  18. */
  19. @property (nonatomic, strong) NSString* borderColor;
  20. /**
  21. * @property cornerRadius Radius (integer value) for the text box corners.
  22. */
  23. @property int cornerRadius;
  24. @end