Class: TreezorClient::Transaction
- Inherits:
-
Object
- Object
- TreezorClient::Transaction
- Defined in:
- lib/treezor_client/models/transaction.rb
Instance Attribute Summary collapse
-
#amount ⇒ Object
Returns the value of attribute amount.
-
#created_date ⇒ Object
Date YYYY-MM-DD HH:MM:SS.
-
#currency ⇒ Object
Returns the value of attribute currency.
-
#description ⇒ Object
Returns the value of attribute description.
-
#execution_date ⇒ Object
Date YYYY-MM-DD.
-
#foreign_id ⇒ Object
Returns the value of attribute foreign_id.
-
#name ⇒ Object
Returns the value of attribute name.
-
#total_rows ⇒ Object
Returns the value of attribute total_rows.
-
#transaction_id ⇒ Object
Returns the value of attribute transaction_id.
-
#transaction_type ⇒ Object
Returns the value of attribute transaction_type.
-
#value_date ⇒ Object
Date YYYY-MM-DD.
-
#wallet_credit_balance ⇒ Object
Returns the value of attribute wallet_credit_balance.
-
#wallet_credit_id ⇒ Object
Returns the value of attribute wallet_credit_id.
-
#wallet_debit_balance ⇒ Object
Returns the value of attribute wallet_debit_balance.
-
#wallet_debit_id ⇒ Object
Returns the value of attribute wallet_debit_id.
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
-
#==(o) ⇒ Object
Checks equality by comparing each attribute.
-
#_deserialize(type, value) ⇒ Object
Deserializes the data based on type.
-
#_to_hash(value) ⇒ Hash
Outputs non-array value in the form of hash For object, use to_hash.
-
#build_from_hash(attributes) ⇒ Object
Builds the object from hash.
- #eql?(o) ⇒ Boolean
-
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
-
#initialize(attributes = {}) ⇒ Transaction
constructor
Initializes the object.
-
#list_invalid_properties ⇒ Object
Show invalid properties with the reasons.
-
#to_body ⇒ Hash
to_body is an alias to to_hash (backward compatibility).
-
#to_hash ⇒ Hash
Returns the object in the form of hash.
-
#to_s ⇒ String
Returns the string representation of the object.
-
#valid? ⇒ Boolean
Check to see if the all the properties in the model are valid.
Constructor Details
#initialize(attributes = {}) ⇒ Transaction
Initializes the object
94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 |
# File 'lib/treezor_client/models/transaction.rb', line 94 def initialize(attributes = {}) return unless attributes.is_a?(Hash) # convert string to symbol for hash key attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v } if attributes.has_key?(:'transactionId') self.transaction_id = attributes[:'transactionId'] end if attributes.has_key?(:'walletDebitId') self.wallet_debit_id = attributes[:'walletDebitId'] end if attributes.has_key?(:'walletCreditId') self.wallet_credit_id = attributes[:'walletCreditId'] end if attributes.has_key?(:'transactionType') self.transaction_type = attributes[:'transactionType'] end if attributes.has_key?(:'foreignId') self.foreign_id = attributes[:'foreignId'] end if attributes.has_key?(:'name') self.name = attributes[:'name'] end if attributes.has_key?(:'description') self.description = attributes[:'description'] end if attributes.has_key?(:'valueDate') self.value_date = attributes[:'valueDate'] end if attributes.has_key?(:'executionDate') self.execution_date = attributes[:'executionDate'] end if attributes.has_key?(:'amount') self.amount = attributes[:'amount'] end if attributes.has_key?(:'walletDebitBalance') self.wallet_debit_balance = attributes[:'walletDebitBalance'] end if attributes.has_key?(:'walletCreditBalance') self.wallet_credit_balance = attributes[:'walletCreditBalance'] end if attributes.has_key?(:'currency') self.currency = attributes[:'currency'] end if attributes.has_key?(:'createdDate') self.created_date = attributes[:'createdDate'] end if attributes.has_key?(:'totalRows') self.total_rows = attributes[:'totalRows'] end end |
Instance Attribute Details
#amount ⇒ Object
Returns the value of attribute amount.
37 38 39 |
# File 'lib/treezor_client/models/transaction.rb', line 37 def amount @amount end |
#created_date ⇒ Object
Date YYYY-MM-DD HH:MM:SS
46 47 48 |
# File 'lib/treezor_client/models/transaction.rb', line 46 def created_date @created_date end |
#currency ⇒ Object
Returns the value of attribute currency.
43 44 45 |
# File 'lib/treezor_client/models/transaction.rb', line 43 def currency @currency end |
#description ⇒ Object
Returns the value of attribute description.
29 30 31 |
# File 'lib/treezor_client/models/transaction.rb', line 29 def description @description end |
#execution_date ⇒ Object
Date YYYY-MM-DD
35 36 37 |
# File 'lib/treezor_client/models/transaction.rb', line 35 def execution_date @execution_date end |
#foreign_id ⇒ Object
Returns the value of attribute foreign_id.
25 26 27 |
# File 'lib/treezor_client/models/transaction.rb', line 25 def foreign_id @foreign_id end |
#name ⇒ Object
Returns the value of attribute name.
27 28 29 |
# File 'lib/treezor_client/models/transaction.rb', line 27 def name @name end |
#total_rows ⇒ Object
Returns the value of attribute total_rows.
48 49 50 |
# File 'lib/treezor_client/models/transaction.rb', line 48 def total_rows @total_rows end |
#transaction_id ⇒ Object
Returns the value of attribute transaction_id.
17 18 19 |
# File 'lib/treezor_client/models/transaction.rb', line 17 def transaction_id @transaction_id end |
#transaction_type ⇒ Object
Returns the value of attribute transaction_type.
23 24 25 |
# File 'lib/treezor_client/models/transaction.rb', line 23 def transaction_type @transaction_type end |
#value_date ⇒ Object
Date YYYY-MM-DD
32 33 34 |
# File 'lib/treezor_client/models/transaction.rb', line 32 def value_date @value_date end |
#wallet_credit_balance ⇒ Object
Returns the value of attribute wallet_credit_balance.
41 42 43 |
# File 'lib/treezor_client/models/transaction.rb', line 41 def wallet_credit_balance @wallet_credit_balance end |
#wallet_credit_id ⇒ Object
Returns the value of attribute wallet_credit_id.
21 22 23 |
# File 'lib/treezor_client/models/transaction.rb', line 21 def wallet_credit_id @wallet_credit_id end |
#wallet_debit_balance ⇒ Object
Returns the value of attribute wallet_debit_balance.
39 40 41 |
# File 'lib/treezor_client/models/transaction.rb', line 39 def wallet_debit_balance @wallet_debit_balance end |
#wallet_debit_id ⇒ Object
Returns the value of attribute wallet_debit_id.
19 20 21 |
# File 'lib/treezor_client/models/transaction.rb', line 19 def wallet_debit_id @wallet_debit_id end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 |
# File 'lib/treezor_client/models/transaction.rb', line 51 def self.attribute_map { :'transaction_id' => :'transactionId', :'wallet_debit_id' => :'walletDebitId', :'wallet_credit_id' => :'walletCreditId', :'transaction_type' => :'transactionType', :'foreign_id' => :'foreignId', :'name' => :'name', :'description' => :'description', :'value_date' => :'valueDate', :'execution_date' => :'executionDate', :'amount' => :'amount', :'wallet_debit_balance' => :'walletDebitBalance', :'wallet_credit_balance' => :'walletCreditBalance', :'currency' => :'currency', :'created_date' => :'createdDate', :'total_rows' => :'totalRows' } end |
.swagger_types ⇒ Object
Attribute type mapping.
72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 |
# File 'lib/treezor_client/models/transaction.rb', line 72 def self.swagger_types { :'transaction_id' => :'Integer', :'wallet_debit_id' => :'Integer', :'wallet_credit_id' => :'Integer', :'transaction_type' => :'String', :'foreign_id' => :'Integer', :'name' => :'String', :'description' => :'String', :'value_date' => :'String', :'execution_date' => :'String', :'amount' => :'String', :'wallet_debit_balance' => :'String', :'wallet_credit_balance' => :'String', :'currency' => :'String', :'created_date' => :'String', :'total_rows' => :'Integer' } end |
Instance Method Details
#==(o) ⇒ Object
Checks equality by comparing each attribute.
176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 |
# File 'lib/treezor_client/models/transaction.rb', line 176 def ==(o) return true if self.equal?(o) self.class == o.class && transaction_id == o.transaction_id && wallet_debit_id == o.wallet_debit_id && wallet_credit_id == o.wallet_credit_id && transaction_type == o.transaction_type && foreign_id == o.foreign_id && name == o.name && description == o.description && value_date == o.value_date && execution_date == o.execution_date && amount == o.amount && wallet_debit_balance == o.wallet_debit_balance && wallet_credit_balance == o.wallet_credit_balance && currency == o.currency && created_date == o.created_date && total_rows == o.total_rows end |
#_deserialize(type, value) ⇒ Object
Deserializes the data based on type
232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 |
# File 'lib/treezor_client/models/transaction.rb', line 232 def _deserialize(type, value) case type.to_sym when :DateTime DateTime.parse(value) when :Date Date.parse(value) when :String value.to_s when :Integer value.to_i when :Float value.to_f when :BOOLEAN if value.to_s =~ /\A(true|t|yes|y|1)\z/i true else false end when :Object # generic object (usually a Hash), return directly value when /\AArray<(?<inner_type>.+)>\z/ inner_type = Regexp.last_match[:inner_type] value.map { |v| _deserialize(inner_type, v) } when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/ k_type = Regexp.last_match[:k_type] v_type = Regexp.last_match[:v_type] {}.tap do |hash| value.each do |k, v| hash[_deserialize(k_type, k)] = _deserialize(v_type, v) end end else # model temp_model = TreezorClient.const_get(type).new temp_model.build_from_hash(value) end end |
#_to_hash(value) ⇒ Hash
Outputs non-array value in the form of hash For object, use to_hash. Otherwise, just return the value
298 299 300 301 302 303 304 305 306 307 308 309 310 |
# File 'lib/treezor_client/models/transaction.rb', line 298 def _to_hash(value) if value.is_a?(Array) value.compact.map { |v| _to_hash(v) } elsif value.is_a?(Hash) {}.tap do |hash| value.each { |k, v| hash[k] = _to_hash(v) } end elsif value.respond_to? :to_hash value.to_hash else value end end |
#build_from_hash(attributes) ⇒ Object
Builds the object from hash
211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 |
# File 'lib/treezor_client/models/transaction.rb', line 211 def build_from_hash(attributes) return nil unless attributes.is_a?(Hash) self.class.swagger_types.each_pair do |key, type| if type =~ /\AArray<(.*)>/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) self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) }) end elsif !attributes[self.class.attribute_map[key]].nil? self.send("#{key}=", _deserialize(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?(o) ⇒ Boolean
198 199 200 |
# File 'lib/treezor_client/models/transaction.rb', line 198 def eql?(o) self == o end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
204 205 206 |
# File 'lib/treezor_client/models/transaction.rb', line 204 def hash [transaction_id, wallet_debit_id, wallet_credit_id, transaction_type, foreign_id, name, description, value_date, execution_date, amount, wallet_debit_balance, wallet_credit_balance, currency, created_date, total_rows].hash end |
#list_invalid_properties ⇒ Object
Show invalid properties with the reasons. Usually used together with valid?
163 164 165 166 |
# File 'lib/treezor_client/models/transaction.rb', line 163 def list_invalid_properties invalid_properties = Array.new invalid_properties end |
#to_body ⇒ Hash
to_body is an alias to to_hash (backward compatibility)
278 279 280 |
# File 'lib/treezor_client/models/transaction.rb', line 278 def to_body to_hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
284 285 286 287 288 289 290 291 292 |
# File 'lib/treezor_client/models/transaction.rb', line 284 def to_hash hash = {} self.class.attribute_map.each_pair do |attr, param| value = self.send(attr) next if value.nil? hash[param] = _to_hash(value) end hash end |
#to_s ⇒ String
Returns the string representation of the object
272 273 274 |
# File 'lib/treezor_client/models/transaction.rb', line 272 def to_s to_hash.to_s end |
#valid? ⇒ Boolean
Check to see if the all the properties in the model are valid
170 171 172 |
# File 'lib/treezor_client/models/transaction.rb', line 170 def valid? true end |