Class: OCI::OspGateway::Models::EcheckPaymentDetail

Inherits:
PaymentDetail
  • Object
show all
Defined in:
lib/oci/osp_gateway/models/echeck_payment_detail.rb

Overview

Echeck Payment related details

Constant Summary collapse

CARD_TYPE_ENUM =
[
  CARD_TYPE_SAVING = 'SAVING'.freeze,
  CARD_TYPE_CHECKING = 'CHECKING'.freeze,
  CARD_TYPE_CORPORATE_CHECKING = 'CORPORATE_CHECKING'.freeze,
  CARD_TYPE_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze
].freeze

Constants inherited from PaymentDetail

PaymentDetail::PAYMENT_METHOD_ENUM

Instance Attribute Summary collapse

Attributes inherited from PaymentDetail

#amount_paid, #paid_by, #payment_method, #time_paid_on

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from PaymentDetail

get_subtype

Constructor Details

#initialize(attributes = {}) ⇒ EcheckPaymentDetail

Initializes the object

Parameters:

  • attributes (Hash) (defaults to: {})

    Model attributes in the form of hash

Options Hash (attributes):

  • :time_paid_on (DateTime)

    The value to assign to the #time_paid_on proprety

  • :paid_by (String)

    The value to assign to the #paid_by proprety

  • :amount_paid (Float)

    The value to assign to the #amount_paid proprety

  • :name_on_card (String)

    The value to assign to the #name_on_card property

  • :card_type (String)

    The value to assign to the #card_type property

  • :account_number (String)

    The value to assign to the #account_number property

  • :routing_number (String)

    The value to assign to the #routing_number property



81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
# File 'lib/oci/osp_gateway/models/echeck_payment_detail.rb', line 81

def initialize(attributes = {})
  return unless attributes.is_a?(Hash)

  attributes['paymentMethod'] = 'ECHECK'

  super(attributes)

  # convert string to symbol for hash key
  attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }

  self.name_on_card = attributes[:'nameOnCard'] if attributes[:'nameOnCard']

  raise 'You cannot provide both :nameOnCard and :name_on_card' if attributes.key?(:'nameOnCard') && attributes.key?(:'name_on_card')

  self.name_on_card = attributes[:'name_on_card'] if attributes[:'name_on_card']

  self.card_type = attributes[:'cardType'] if attributes[:'cardType']

  raise 'You cannot provide both :cardType and :card_type' if attributes.key?(:'cardType') && attributes.key?(:'card_type')

  self.card_type = attributes[:'card_type'] if attributes[:'card_type']

  self. = attributes[:'accountNumber'] if attributes[:'accountNumber']

  raise 'You cannot provide both :accountNumber and :account_number' if attributes.key?(:'accountNumber') && attributes.key?(:'account_number')

  self. = attributes[:'account_number'] if attributes[:'account_number']

  self.routing_number = attributes[:'routingNumber'] if attributes[:'routingNumber']

  raise 'You cannot provide both :routingNumber and :routing_number' if attributes.key?(:'routingNumber') && attributes.key?(:'routing_number')

  self.routing_number = attributes[:'routing_number'] if attributes[:'routing_number']
end

Instance Attribute Details

#account_numberString

Account number of the card owner

Returns:

  • (String)


30
31
32
# File 'lib/oci/osp_gateway/models/echeck_payment_detail.rb', line 30

def 
  @account_number
end

#card_typeString

Echeck card type

Returns:

  • (String)


26
27
28
# File 'lib/oci/osp_gateway/models/echeck_payment_detail.rb', line 26

def card_type
  @card_type
end

#name_on_cardString

Name on the echeck card

Returns:

  • (String)


22
23
24
# File 'lib/oci/osp_gateway/models/echeck_payment_detail.rb', line 22

def name_on_card
  @name_on_card
end

#routing_numberString

Routing number of the echeck card

Returns:

  • (String)


34
35
36
# File 'lib/oci/osp_gateway/models/echeck_payment_detail.rb', line 34

def routing_number
  @routing_number
end

Class Method Details

.attribute_mapObject

Attribute mapping from ruby-style variable name to JSON key.



37
38
39
40
41
42
43
44
45
46
47
48
49
50
# File 'lib/oci/osp_gateway/models/echeck_payment_detail.rb', line 37

def self.attribute_map
  {
    # rubocop:disable Style/SymbolLiteral
    'time_paid_on': :'timePaidOn',
    'paid_by': :'paidBy',
    'payment_method': :'paymentMethod',
    'amount_paid': :'amountPaid',
    'name_on_card': :'nameOnCard',
    'card_type': :'cardType',
    'account_number': :'accountNumber',
    'routing_number': :'routingNumber'
    # rubocop:enable Style/SymbolLiteral
  }
end

.swagger_typesObject

Attribute type mapping.



53
54
55
56
57
58
59
60
61
62
63
64
65
66
# File 'lib/oci/osp_gateway/models/echeck_payment_detail.rb', line 53

def self.swagger_types
  {
    # rubocop:disable Style/SymbolLiteral
    'time_paid_on': :'DateTime',
    'paid_by': :'String',
    'payment_method': :'String',
    'amount_paid': :'Float',
    'name_on_card': :'String',
    'card_type': :'String',
    'account_number': :'String',
    'routing_number': :'String'
    # rubocop:enable Style/SymbolLiteral
  }
end

Instance Method Details

#==(other) ⇒ Object

Checks equality by comparing each attribute.

Parameters:

  • other (Object)

    the other object to be compared



136
137
138
139
140
141
142
143
144
145
146
147
148
# File 'lib/oci/osp_gateway/models/echeck_payment_detail.rb', line 136

def ==(other)
  return true if equal?(other)

  self.class == other.class &&
    time_paid_on == other.time_paid_on &&
    paid_by == other.paid_by &&
    payment_method == other.payment_method &&
    amount_paid == other.amount_paid &&
    name_on_card == other.name_on_card &&
    card_type == other.card_type &&
     == other. &&
    routing_number == other.routing_number
end

#build_from_hash(attributes) ⇒ Object

Builds the object from hash

Parameters:

  • attributes (Hash)

    Model attributes in the form of hash

Returns:

  • (Object)

    Returns the model itself



173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
# File 'lib/oci/osp_gateway/models/echeck_payment_detail.rb', line 173

def build_from_hash(attributes)
  return nil unless attributes.is_a?(Hash)

  self.class.swagger_types.each_pair do |key, type|
    if type =~ /^Array<(.*)>/i
      # check to ensure the input is an array given that the the attribute
      # is documented as an array but the input is not
      if attributes[self.class.attribute_map[key]].is_a?(Array)
        public_method("#{key}=").call(
          attributes[self.class.attribute_map[key]]
            .map { |v| OCI::Internal::Util.convert_to_type(Regexp.last_match(1), v) }
        )
      end
    elsif !attributes[self.class.attribute_map[key]].nil?
      public_method("#{key}=").call(
        OCI::Internal::Util.convert_to_type(type, attributes[self.class.attribute_map[key]])
      )
    end
    # or else data not found in attributes(hash), not an issue as the data can be optional
  end

  self
end

#eql?(other) ⇒ Boolean

Parameters:

  • other (Object)

    the other object to be compared

Returns:

  • (Boolean)

See Also:

  • `==` method


153
154
155
# File 'lib/oci/osp_gateway/models/echeck_payment_detail.rb', line 153

def eql?(other)
  self == other
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



162
163
164
# File 'lib/oci/osp_gateway/models/echeck_payment_detail.rb', line 162

def hash
  [time_paid_on, paid_by, payment_method, amount_paid, name_on_card, card_type, , routing_number].hash
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



206
207
208
209
210
211
212
213
214
215
# File 'lib/oci/osp_gateway/models/echeck_payment_detail.rb', line 206

def to_hash
  hash = {}
  self.class.attribute_map.each_pair do |attr, param|
    value = public_method(attr).call
    next if value.nil? && !instance_variable_defined?("@#{attr}")

    hash[param] = _to_hash(value)
  end
  hash
end

#to_sString

Returns the string representation of the object

Returns:

  • (String)

    String presentation of the object



200
201
202
# File 'lib/oci/osp_gateway/models/echeck_payment_detail.rb', line 200

def to_s
  to_hash.to_s
end