class Braintree::CreditCardVerification

Attributes

amount[R]
avs_error_response_code[R]
avs_postal_code_response_code[R]
avs_street_address_response_code[R]
billing[R]
created_at[R]
credit_card[R]
currency_iso_code[R]
cvv_response_code[R]
gateway_rejection_reason[R]
graphql_id[R]
id[R]
merchant_account_id[R]
network_response_code[R]
network_response_text[R]
network_transaction_id[R]
processor_response_code[R]
processor_response_text[R]
processor_response_type[R]
risk_data[R]
status[R]
three_d_secure_info[R]

Public Class Methods

create(attributes) click to toggle source
# File lib/braintree/credit_card_verification.rb, line 106
def self.create(attributes)
  Util.verify_keys(CreditCardVerificationGateway._create_signature, attributes)
  Configuration.gateway.verification.create(attributes)
end
find(*args) click to toggle source
# File lib/braintree/credit_card_verification.rb, line 98
def self.find(*args)
  Configuration.gateway.verification.find(*args)
end