Class: Braintree::BinData

Inherits:
Object
  • Object
show all
Includes:
BaseModule
Defined in:
lib/braintree/bin_data.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods included from BaseModule

included

Methods included from Braintree::BaseModule::Methods

#copy_instance_variables_from_object, #return_object_or_raise, #set_instance_variables_from_hash, #singleton_class

Constructor Details

#initialize(attributes) ⇒ BinData

Returns a new instance of BinData.



20
21
22
# File 'lib/braintree/bin_data.rb', line 20

def initialize(attributes)
  set_instance_variables_from_hash attributes unless attributes.nil?
end

Instance Attribute Details

#businessObject (readonly)

Returns the value of attribute business.



5
6
7
# File 'lib/braintree/bin_data.rb', line 5

def business
  @business
end

#commercialObject (readonly)

Returns the value of attribute commercial.



6
7
8
# File 'lib/braintree/bin_data.rb', line 6

def commercial
  @commercial
end

#consumerObject (readonly)

Returns the value of attribute consumer.



7
8
9
# File 'lib/braintree/bin_data.rb', line 7

def consumer
  @consumer
end

#corporateObject (readonly)

Returns the value of attribute corporate.



8
9
10
# File 'lib/braintree/bin_data.rb', line 8

def corporate
  @corporate
end

#country_of_issuanceObject (readonly)

Returns the value of attribute country_of_issuance.



9
10
11
# File 'lib/braintree/bin_data.rb', line 9

def country_of_issuance
  @country_of_issuance
end

#debitObject (readonly)

Returns the value of attribute debit.



10
11
12
# File 'lib/braintree/bin_data.rb', line 10

def debit
  @debit
end

#durbin_regulatedObject (readonly)

Returns the value of attribute durbin_regulated.



11
12
13
# File 'lib/braintree/bin_data.rb', line 11

def durbin_regulated
  @durbin_regulated
end

#healthcareObject (readonly)

Returns the value of attribute healthcare.



12
13
14
# File 'lib/braintree/bin_data.rb', line 12

def healthcare
  @healthcare
end

#issuing_bankObject (readonly)

Returns the value of attribute issuing_bank.



13
14
15
# File 'lib/braintree/bin_data.rb', line 13

def issuing_bank
  @issuing_bank
end

#payrollObject (readonly)

Returns the value of attribute payroll.



14
15
16
# File 'lib/braintree/bin_data.rb', line 14

def payroll
  @payroll
end

#prepaidObject (readonly)

Returns the value of attribute prepaid.



15
16
17
# File 'lib/braintree/bin_data.rb', line 15

def prepaid
  @prepaid
end

#prepaid_reloadableObject (readonly)

Returns the value of attribute prepaid_reloadable.



16
17
18
# File 'lib/braintree/bin_data.rb', line 16

def prepaid_reloadable
  @prepaid_reloadable
end

#product_idObject (readonly)

Returns the value of attribute product_id.



17
18
19
# File 'lib/braintree/bin_data.rb', line 17

def product_id
  @product_id
end

#purchaseObject (readonly)

Returns the value of attribute purchase.



18
19
20
# File 'lib/braintree/bin_data.rb', line 18

def purchase
  @purchase
end

Class Method Details

._attributesObject



31
32
33
34
35
36
37
# File 'lib/braintree/bin_data.rb', line 31

def self._attributes
  [
    :business, :commercial, :consumer, :corporate, :country_of_issuance, :debit,
    :durbin_regulated, :healthcare, :issuing_bank, :payroll, :prepaid,
    :prepaid_reloadable, :product_id, :purchase
  ]
end

Instance Method Details

#inspectObject



24
25
26
27
28
29
# File 'lib/braintree/bin_data.rb', line 24

def inspect
  formatted_attributes = self.class._attributes.map do |attr|
    "#{attr}: #{send(attr).inspect}"
  end
  "#<#{self.class} #{formatted_attributes.join(", ")}>"
end