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
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 160 161 162 |
# File 'lib/treezor_client/models/transaction.rb', line 96 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
38 39 40 |
# File 'lib/treezor_client/models/transaction.rb', line 38 def amount @amount end |
#created_date ⇒ Object
Date YYYY-MM-DD HH:MM:SS
47 48 49 |
# File 'lib/treezor_client/models/transaction.rb', line 47 def created_date @created_date end |
#currency ⇒ Object
Returns the value of attribute currency
44 45 46 |
# File 'lib/treezor_client/models/transaction.rb', line 44 def currency @currency end |
#description ⇒ Object
Returns the value of attribute description
30 31 32 |
# File 'lib/treezor_client/models/transaction.rb', line 30 def description @description end |
#execution_date ⇒ Object
Date YYYY-MM-DD
36 37 38 |
# File 'lib/treezor_client/models/transaction.rb', line 36 def execution_date @execution_date end |
#foreign_id ⇒ Object
Returns the value of attribute foreign_id
26 27 28 |
# File 'lib/treezor_client/models/transaction.rb', line 26 def foreign_id @foreign_id end |
#name ⇒ Object
Returns the value of attribute name
28 29 30 |
# File 'lib/treezor_client/models/transaction.rb', line 28 def name @name end |
#total_rows ⇒ Object
Returns the value of attribute total_rows
49 50 51 |
# File 'lib/treezor_client/models/transaction.rb', line 49 def total_rows @total_rows end |
#transaction_id ⇒ Object
Returns the value of attribute transaction_id
18 19 20 |
# File 'lib/treezor_client/models/transaction.rb', line 18 def transaction_id @transaction_id end |
#transaction_type ⇒ Object
Returns the value of attribute transaction_type
24 25 26 |
# File 'lib/treezor_client/models/transaction.rb', line 24 def transaction_type @transaction_type end |
#value_date ⇒ Object
Date YYYY-MM-DD
33 34 35 |
# File 'lib/treezor_client/models/transaction.rb', line 33 def value_date @value_date end |
#wallet_credit_balance ⇒ Object
Returns the value of attribute wallet_credit_balance
42 43 44 |
# File 'lib/treezor_client/models/transaction.rb', line 42 def wallet_credit_balance @wallet_credit_balance end |
#wallet_credit_id ⇒ Object
Returns the value of attribute wallet_credit_id
22 23 24 |
# File 'lib/treezor_client/models/transaction.rb', line 22 def wallet_credit_id @wallet_credit_id end |
#wallet_debit_balance ⇒ Object
Returns the value of attribute wallet_debit_balance
40 41 42 |
# File 'lib/treezor_client/models/transaction.rb', line 40 def wallet_debit_balance @wallet_debit_balance end |
#wallet_debit_id ⇒ Object
Returns the value of attribute wallet_debit_id
20 21 22 |
# File 'lib/treezor_client/models/transaction.rb', line 20 def wallet_debit_id @wallet_debit_id end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 |
# File 'lib/treezor_client/models/transaction.rb', line 53 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.
74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 |
# File 'lib/treezor_client/models/transaction.rb', line 74 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.
179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 |
# File 'lib/treezor_client/models/transaction.rb', line 179 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
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 269 270 271 |
# File 'lib/treezor_client/models/transaction.rb', line 235 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
301 302 303 304 305 306 307 308 309 310 311 312 313 |
# File 'lib/treezor_client/models/transaction.rb', line 301 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
214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 |
# File 'lib/treezor_client/models/transaction.rb', line 214 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
201 202 203 |
# File 'lib/treezor_client/models/transaction.rb', line 201 def eql?(o) self == o end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
207 208 209 |
# File 'lib/treezor_client/models/transaction.rb', line 207 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?
166 167 168 169 |
# File 'lib/treezor_client/models/transaction.rb', line 166 def list_invalid_properties invalid_properties = Array.new return invalid_properties end |
#to_body ⇒ Hash
to_body is an alias to to_hash (backward compatibility)
281 282 283 |
# File 'lib/treezor_client/models/transaction.rb', line 281 def to_body to_hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
287 288 289 290 291 292 293 294 295 |
# File 'lib/treezor_client/models/transaction.rb', line 287 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
275 276 277 |
# File 'lib/treezor_client/models/transaction.rb', line 275 def to_s to_hash.to_s end |
#valid? ⇒ Boolean
Check to see if the all the properties in the model are valid
173 174 175 |
# File 'lib/treezor_client/models/transaction.rb', line 173 def valid? return true end |