Name | Type | Description | Notes |
---|---|---|---|
cardholder_name | String | The cardholder's name as it appears on the card. | [optional] |
card_number | String | The card number, as a string without any separators. | [optional] |
expiry_date | String | The card's expiration date in the format `MMYY`. | [optional] |
cvv | String | The card's security code. | [optional] |
issue_number | String | The card's issue number. | [optional] |
require 'worldnet_payments'
instance = WorldnetPayments::CardDetailsAllOf.new(
cardholder_name: null,
card_number: null,
expiry_date: null,
cvv: null,
issue_number: null
)