ToolbarCustomization.h 755 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // ToolbarCustomization.h
  3. // CardinalEMVCoSDK
  4. //
  5. // Copyright © 2018 Cardinal Commerce. All rights reserved.
  6. //
  7. #import "Customization.h"
  8. /**
  9. * The ToolbarCustomization class provides methods for the 3DS Requestor App to pass toolbar customization parameters to the 3DS SDK.
  10. */
  11. @interface ToolbarCustomization : 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 headerText Text for the header.
  18. */
  19. @property (nonatomic, strong) NSString* headerText;
  20. /**
  21. * @property buttonText Text for the button. For example, “Cancel”.
  22. */
  23. @property (nonatomic, strong) NSString* buttonText;
  24. @end