class AuthorizeNet::API::CreditCardType
{AnetApi/xml/v1/schema/AnetApiSchema.xsd}creditCardType
cardNumber - SOAP::SOAPString expirationDate - SOAP::SOAPString cardCode - (any) isPaymentToken - SOAP::SOAPBoolean cryptogram - SOAP::SOAPString tokenRequestorName - SOAP::SOAPString tokenRequestorId - SOAP::SOAPString tokenRequestorEci - SOAP::SOAPString
Public Class Methods
new(cardNumber = nil, expirationDate = nil, cardCode = nil, isPaymentToken = nil, cryptogram = nil, tokenRequestorName = nil, tokenRequestorId = nil, tokenRequestorEci = nil)
click to toggle source
# File lib/authorize_net/api/schema.rb, line 307 def initialize(cardNumber = nil, expirationDate = nil, cardCode = nil, isPaymentToken = nil, cryptogram = nil, tokenRequestorName = nil, tokenRequestorId = nil, tokenRequestorEci = nil) @cardNumber = cardNumber @expirationDate = expirationDate @cardCode = cardCode @isPaymentToken = isPaymentToken @cryptogram = cryptogram @tokenRequestorName = tokenRequestorName @tokenRequestorId = tokenRequestorId @tokenRequestorEci = tokenRequestorEci end