Sha256: a64ea1555df19bd73a8c554c8d6cf1af4b150826d2ebb667a61d736f59d7cedb
Contents?: true
Size: 961 Bytes
Versions: 6
Compression:
Stored size: 961 Bytes
Contents
# Conekta::TokenCard ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **cvc** | **String** | It is a value that allows identifying the security code of the card. | | | **device_fingerprint** | **String** | It is a value that allows identifying the device fingerprint. | [optional] | | **exp_month** | **String** | It is a value that allows identifying the expiration month of the card. | | | **exp_year** | **String** | It is a value that allows identifying the expiration year of the card. | | | **name** | **String** | It is a value that allows identifying the name of the cardholder. | | | **number** | **String** | It is a value that allows identifying the number of the card. | | ## Example ```ruby require 'conekta' instance = Conekta::TokenCard.new( cvc: 123, device_fingerprint: zptcxk4p6w1ijwz85snf1l3bqe5g09ie, exp_month: 12, exp_year: 26, name: Miguel, number: 4242424242424242 ) ```
Version data entries
6 entries across 6 versions & 1 rubygems