LengthModel
Defines the length requirements for a card number. This class specifies the valid length range for card numbers to ensure proper validation of card information.
Parameters
min
Minimum allowed length for the card number
max
Maximum allowed length for the card number
Example:
val length = LengthModel(
min = 16,
max = 16
)
Content copied to clipboard