DefaultButtonCustomizations
@objc(Checkout3DSDefaultButtonCustomizations)
public final class DefaultButtonCustomizations : NSObject, ButtonCustomizations
A DefaultButtonCustomizations class for the different buttons that appear on the challenge screen.
-
The ButtonCustomization object for customizing the verify button on the challenge screen.
Declaration
Swift
@objc public let verifyButtonCustomization: ButtonCustomization
-
The ButtonCustomization object for customizing the continue button on the challenge screen.
Declaration
Swift
@objc public let continueFlowButtonCustomization: ButtonCustomization
-
The ButtonCustomization object for customizing the next button on the challenge screen.
Declaration
Swift
@objc public let nextButtonCustomization: ButtonCustomization
-
The ButtonCustomization object for customizing the cancel button on the challenge screen.
Declaration
Swift
@objc public let cancelButtonCustomization: ButtonCustomization
-
The ButtonCustomization object for customizing the resend button on the challenge screen.
Declaration
Swift
@objc public let resendButtonCustomization: ButtonCustomization
-
init(verifyButtonCustomization:
continueFlowButtonCustomization: nextButtonCustomization: cancelButtonCustomization: resendButtonCustomization: ) Initializes a DefaultButtonCustomizations object for verify, continue, next, cancel and resend buttons and also allows the customization of the buttons if needed.
Declaration
Swift
@objc public init(verifyButtonCustomization: ButtonCustomization = DefaultVerifyButtonCustomization(), continueFlowButtonCustomization: ButtonCustomization = DefaultContinueButtonCustomization(), nextButtonCustomization: ButtonCustomization = DefaultNextButtonCustomization(), cancelButtonCustomization: ButtonCustomization = DefaultCancelButtonCustomization(), resendButtonCustomization: ButtonCustomization = DefaultResendButtonCustomization())