Class: OCI::OspGateway::Models::EcheckPaymentDetail
- Inherits:
-
PaymentDetail
- Object
- PaymentDetail
- OCI::OspGateway::Models::EcheckPaymentDetail
- 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
-
#account_number ⇒ String
Account number of the card owner.
-
#card_type ⇒ String
Echeck card type.
-
#name_on_card ⇒ String
Name on the echeck card.
-
#routing_number ⇒ String
Routing number of the echeck card.
Attributes inherited from PaymentDetail
#amount_paid, #paid_by, #payment_method, #time_paid_on
Class Method Summary collapse
-
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
-
.swagger_types ⇒ Object
Attribute type mapping.
Instance Method Summary collapse
-
#==(other) ⇒ Object
Checks equality by comparing each attribute.
-
#build_from_hash(attributes) ⇒ Object
Builds the object from hash.
- #eql?(other) ⇒ Boolean
-
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
-
#initialize(attributes = {}) ⇒ EcheckPaymentDetail
constructor
Initializes the object.
-
#to_hash ⇒ Hash
Returns the object in the form of hash.
-
#to_s ⇒ String
Returns the string representation of the object.
Methods inherited from PaymentDetail
Constructor Details
#initialize(attributes = {}) ⇒ EcheckPaymentDetail
Initializes the object
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.account_number = attributes[:'accountNumber'] if attributes[:'accountNumber'] raise 'You cannot provide both :accountNumber and :account_number' if attributes.key?(:'accountNumber') && attributes.key?(:'account_number') self.account_number = 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_number ⇒ String
Account number of the card owner
30 31 32 |
# File 'lib/oci/osp_gateway/models/echeck_payment_detail.rb', line 30 def account_number @account_number end |
#card_type ⇒ String
Echeck card type
26 27 28 |
# File 'lib/oci/osp_gateway/models/echeck_payment_detail.rb', line 26 def card_type @card_type end |
#name_on_card ⇒ String
Name on the echeck card
22 23 24 |
# File 'lib/oci/osp_gateway/models/echeck_payment_detail.rb', line 22 def name_on_card @name_on_card end |
#routing_number ⇒ String
Routing number of the echeck card
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_map ⇒ Object
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_types ⇒ Object
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.
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 && account_number == other.account_number && routing_number == other.routing_number end |
#build_from_hash(attributes) ⇒ Object
Builds the object from hash
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
153 154 155 |
# File 'lib/oci/osp_gateway/models/echeck_payment_detail.rb', line 153 def eql?(other) self == other end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
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, account_number, routing_number].hash end |
#to_hash ⇒ 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_s ⇒ String
Returns the string representation 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 |