| 123456789101112131415161718192021222324252627282930 |
- //
- // TextBoxCustomization.h
- // CardinalEMVCoSDK
- //
- // Copyright © 2018 Cardinal Commerce. All rights reserved.
- //
- #import "Customization.h"
- /**
- * The TextBoxCustomization class provides methods for the 3DS Requestor App to pass text box customization parameters to the 3DS SDK.
- */
- @interface TextBoxCustomization : Customization
- /**
- * @property borderWidth Width (integer value) of the text box border.
- */
- @property int borderWidth;
- /**
- * @property borderColor Colour code in Hex format. For example, the colour code can be “#999999”.
- */
- @property (nonatomic, strong) NSString* borderColor;
- /**
- * @property cornerRadius Radius (integer value) for the text box corners.
- */
- @property int cornerRadius;
- @end
|