LabelCustomization.h 766 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // LabelCustomization.h
  3. // CardinalEMVCoSDK
  4. //
  5. // Copyright © 2018 Cardinal Commerce. All rights reserved.
  6. //
  7. #import "Customization.h"
  8. /**
  9. * The LabelCustomization class provides methods for the 3DS Requestor App to pass label customization parameters to the 3DS SDK.
  10. */
  11. @interface LabelCustomization : Customization
  12. /**
  13. * @property headingTextColor Colour code in Hex format. For example, the colour code can be “#999999”.
  14. */
  15. @property (nonatomic, strong) NSString* headingTextColor;
  16. /**
  17. * @property headingTextFontName Font type for the heading label text.
  18. */
  19. @property (nonatomic, strong) NSString* headingTextFontName;
  20. /**
  21. * @property headingTextFontSize Font size for the heading label text.
  22. */
  23. @property int headingTextFontSize;
  24. @end