Sha256: 6e70ed27b0d30407b4264c306cbc346726d8b2f6903dcaebfc61f4c2e9193c6f
Contents?: true
Size: 857 Bytes
Versions: 1
Compression:
Stored size: 857 Bytes
Contents
# Conekta::PaymentMethodCardRequest ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **type** | **String** | Type of payment method | | | **cvc** | **String** | Card security code | | | **exp_month** | **String** | Card expiration month | | | **exp_year** | **String** | Card expiration year | | | **name** | **String** | Cardholder name | | | **number** | **String** | Card number | | | **customer_ip_address** | **String** | Optional field used to capture the customer's IP address for fraud prevention and security monitoring purposes | [optional] | ## Example ```ruby require 'conekta' instance = Conekta::PaymentMethodCardRequest.new( type: card | cash | spei, cvc: 198, exp_month: 12, exp_year: 2025, name: John Doe, number: 4242424242424242, customer_ip_address: 0.0.0.0 ) ```
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
conekta-6.0.4 | docs/PaymentMethodCardRequest.md |