ButtonCustomization.h 623 B

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