Sha256: 8ddd1cb06022d0d1c267be8ddf2cbe7b8e0733d42b6072773bbc36dfe39f2fa3
Contents?: true
Size: 1.77 KB
Versions: 1
Compression:
Stored size: 1.77 KB
Contents
module Braintree class TransactionSearch < AdvancedSearch search_fields( :billing_company, :billing_country_name, :billing_extended_address, :billing_first_name, :billing_last_name, :billing_locality, :billing_postal_code, :billing_region, :billing_street_address, :credit_card_cardholder_name, :currency, :customer_company, :customer_email, :customer_fax, :customer_first_name, :customer_id, :customer_last_name, :customer_phone, :customer_website, :id, :order_id, :payment_method_token, :processor_authorization_code, :shipping_company, :shipping_country_name, :shipping_extended_address, :shipping_first_name, :shipping_last_name, :shipping_locality, :shipping_postal_code, :shipping_region, :shipping_street_address ) equality_fields :credit_card_expiration_date partial_match_fields :credit_card_number multiple_value_field :created_using, :allows => [ Transaction::CreatedUsing::FullInformation, Transaction::CreatedUsing::Token ] multiple_value_field :credit_card_card_type, :allows => CreditCard::CardType::All multiple_value_field :credit_card_customer_location, :allows => [ CreditCard::CustomerLocation::International, CreditCard::CustomerLocation::US ] multiple_value_field :merchant_account_id multiple_value_field :status, :allows => Transaction::Status::All multiple_value_field :source, :allows => [ Transaction::Source::Api, Transaction::Source::ControlPanel, Transaction::Source::Recurring ] multiple_value_field :type key_value_fields :refund range_fields :amount, :created_at end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
braintree-2.1.0 | lib/braintree/transaction_search.rb |