Class: CyberSource::ReportingV3RetrievalDetailsGet200ResponseRetrievalDetails
- Inherits:
-
Object
- Object
- CyberSource::ReportingV3RetrievalDetailsGet200ResponseRetrievalDetails
- Defined in:
- lib/cybersource_rest_client/models/reporting_v3_retrieval_details_get200_response_retrieval_details.rb
Instance Attribute Summary collapse
-
#action ⇒ Object
Retrieval Action.
-
#action_description ⇒ Object
Retrieval Action Description.
-
#alert_type ⇒ Object
Retrieval Alert Type.
-
#amount ⇒ Object
Retrieval Amount.
-
#applications ⇒ Object
ICS Request Applications.
-
#card_type ⇒ Object
Card Type.
-
#currency_code ⇒ Object
Valid ISO 4217 ALPHA-3 currency code.
-
#customer_id ⇒ Object
Customer Id.
-
#event_requested_time ⇒ Object
Event Request Date.
-
#merchant_name ⇒ Object
Merchant Name.
-
#merchant_reference_number ⇒ Object
Merchant Reference Number.
-
#nature_of_dispute ⇒ Object
Nature of Dispute.
-
#original_settlement_time ⇒ Object
Original Settlement Date.
-
#processor_merchant_id ⇒ Object
Processor Merchant Id.
-
#reason_code ⇒ Object
Retrieval Reason Code.
-
#representment_cp_time ⇒ Object
Representment CP Date.
-
#request_id ⇒ Object
Request Id.
-
#response_due_time ⇒ Object
Response Due Date.
-
#sign ⇒ Object
Retrieval Sign.
-
#time ⇒ Object
Retrieval Date.
-
#tracking_number ⇒ Object
Tracking Number.
-
#transaction_reference_number ⇒ Object
Transaction Reference Number.
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 = {}) ⇒ ReportingV3RetrievalDetailsGet200ResponseRetrievalDetails
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 = {}) ⇒ ReportingV3RetrievalDetailsGet200ResponseRetrievalDetails
Initializes the object
141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 |
# File 'lib/cybersource_rest_client/models/reporting_v3_retrieval_details_get200_response_retrieval_details.rb', line 141 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?(:'processorMerchantId') self.processor_merchant_id = attributes[:'processorMerchantId'] end if attributes.has_key?(:'merchantName') self.merchant_name = attributes[:'merchantName'] end if attributes.has_key?(:'transactionReferenceNumber') self.transaction_reference_number = attributes[:'transactionReferenceNumber'] end if attributes.has_key?(:'merchantReferenceNumber') self.merchant_reference_number = attributes[:'merchantReferenceNumber'] end if attributes.has_key?(:'natureOfDispute') self.nature_of_dispute = attributes[:'natureOfDispute'] end if attributes.has_key?(:'alertType') self.alert_type = attributes[:'alertType'] end if attributes.has_key?(:'amount') self.amount = attributes[:'amount'] end if attributes.has_key?(:'sign') self.sign = attributes[:'sign'] end if attributes.has_key?(:'action') self.action = attributes[:'action'] end if attributes.has_key?(:'cardType') self.card_type = attributes[:'cardType'] end if attributes.has_key?(:'originalSettlementTime') self.original_settlement_time = attributes[:'originalSettlementTime'] end if attributes.has_key?(:'trackingNumber') self.tracking_number = attributes[:'trackingNumber'] end if attributes.has_key?(:'currencyCode') self.currency_code = attributes[:'currencyCode'] end if attributes.has_key?(:'requestId') self.request_id = attributes[:'requestId'] end if attributes.has_key?(:'responseDueTime') self.response_due_time = attributes[:'responseDueTime'] end if attributes.has_key?(:'time') self.time = attributes[:'time'] end if attributes.has_key?(:'actionDescription') self.action_description = attributes[:'actionDescription'] end if attributes.has_key?(:'customerId') self.customer_id = attributes[:'customerId'] end if attributes.has_key?(:'reasonCode') self.reason_code = attributes[:'reasonCode'] end if attributes.has_key?(:'representmentCPTime') self.representment_cp_time = attributes[:'representmentCPTime'] end if attributes.has_key?(:'applications') self.applications = attributes[:'applications'] end if attributes.has_key?(:'eventRequestedTime') self.event_requested_time = attributes[:'eventRequestedTime'] end end |
Instance Attribute Details
#action ⇒ Object
Retrieval Action
42 43 44 |
# File 'lib/cybersource_rest_client/models/reporting_v3_retrieval_details_get200_response_retrieval_details.rb', line 42 def action @action end |
#action_description ⇒ Object
Retrieval Action Description
66 67 68 |
# File 'lib/cybersource_rest_client/models/reporting_v3_retrieval_details_get200_response_retrieval_details.rb', line 66 def action_description @action_description end |
#alert_type ⇒ Object
Retrieval Alert Type
33 34 35 |
# File 'lib/cybersource_rest_client/models/reporting_v3_retrieval_details_get200_response_retrieval_details.rb', line 33 def alert_type @alert_type end |
#amount ⇒ Object
Retrieval Amount
36 37 38 |
# File 'lib/cybersource_rest_client/models/reporting_v3_retrieval_details_get200_response_retrieval_details.rb', line 36 def amount @amount end |
#applications ⇒ Object
ICS Request Applications
78 79 80 |
# File 'lib/cybersource_rest_client/models/reporting_v3_retrieval_details_get200_response_retrieval_details.rb', line 78 def applications @applications end |
#card_type ⇒ Object
Card Type
45 46 47 |
# File 'lib/cybersource_rest_client/models/reporting_v3_retrieval_details_get200_response_retrieval_details.rb', line 45 def card_type @card_type end |
#currency_code ⇒ Object
Valid ISO 4217 ALPHA-3 currency code
54 55 56 |
# File 'lib/cybersource_rest_client/models/reporting_v3_retrieval_details_get200_response_retrieval_details.rb', line 54 def currency_code @currency_code end |
#customer_id ⇒ Object
Customer Id
69 70 71 |
# File 'lib/cybersource_rest_client/models/reporting_v3_retrieval_details_get200_response_retrieval_details.rb', line 69 def customer_id @customer_id end |
#event_requested_time ⇒ Object
Event Request Date
81 82 83 |
# File 'lib/cybersource_rest_client/models/reporting_v3_retrieval_details_get200_response_retrieval_details.rb', line 81 def event_requested_time @event_requested_time end |
#merchant_name ⇒ Object
Merchant Name
21 22 23 |
# File 'lib/cybersource_rest_client/models/reporting_v3_retrieval_details_get200_response_retrieval_details.rb', line 21 def merchant_name @merchant_name end |
#merchant_reference_number ⇒ Object
Merchant Reference Number
27 28 29 |
# File 'lib/cybersource_rest_client/models/reporting_v3_retrieval_details_get200_response_retrieval_details.rb', line 27 def merchant_reference_number @merchant_reference_number end |
#nature_of_dispute ⇒ Object
Nature of Dispute
30 31 32 |
# File 'lib/cybersource_rest_client/models/reporting_v3_retrieval_details_get200_response_retrieval_details.rb', line 30 def nature_of_dispute @nature_of_dispute end |
#original_settlement_time ⇒ Object
Original Settlement Date
48 49 50 |
# File 'lib/cybersource_rest_client/models/reporting_v3_retrieval_details_get200_response_retrieval_details.rb', line 48 def original_settlement_time @original_settlement_time end |
#processor_merchant_id ⇒ Object
Processor Merchant Id
18 19 20 |
# File 'lib/cybersource_rest_client/models/reporting_v3_retrieval_details_get200_response_retrieval_details.rb', line 18 def processor_merchant_id @processor_merchant_id end |
#reason_code ⇒ Object
Retrieval Reason Code
72 73 74 |
# File 'lib/cybersource_rest_client/models/reporting_v3_retrieval_details_get200_response_retrieval_details.rb', line 72 def reason_code @reason_code end |
#representment_cp_time ⇒ Object
Representment CP Date
75 76 77 |
# File 'lib/cybersource_rest_client/models/reporting_v3_retrieval_details_get200_response_retrieval_details.rb', line 75 def representment_cp_time @representment_cp_time end |
#request_id ⇒ Object
Request Id
57 58 59 |
# File 'lib/cybersource_rest_client/models/reporting_v3_retrieval_details_get200_response_retrieval_details.rb', line 57 def request_id @request_id end |
#response_due_time ⇒ Object
Response Due Date
60 61 62 |
# File 'lib/cybersource_rest_client/models/reporting_v3_retrieval_details_get200_response_retrieval_details.rb', line 60 def response_due_time @response_due_time end |
#sign ⇒ Object
Retrieval Sign
39 40 41 |
# File 'lib/cybersource_rest_client/models/reporting_v3_retrieval_details_get200_response_retrieval_details.rb', line 39 def sign @sign end |
#time ⇒ Object
Retrieval Date
63 64 65 |
# File 'lib/cybersource_rest_client/models/reporting_v3_retrieval_details_get200_response_retrieval_details.rb', line 63 def time @time end |
#tracking_number ⇒ Object
Tracking Number
51 52 53 |
# File 'lib/cybersource_rest_client/models/reporting_v3_retrieval_details_get200_response_retrieval_details.rb', line 51 def tracking_number @tracking_number end |
#transaction_reference_number ⇒ Object
Transaction Reference Number
24 25 26 |
# File 'lib/cybersource_rest_client/models/reporting_v3_retrieval_details_get200_response_retrieval_details.rb', line 24 def transaction_reference_number @transaction_reference_number end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
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 |
# File 'lib/cybersource_rest_client/models/reporting_v3_retrieval_details_get200_response_retrieval_details.rb', line 84 def self.attribute_map { :'processor_merchant_id' => :'processorMerchantId', :'merchant_name' => :'merchantName', :'transaction_reference_number' => :'transactionReferenceNumber', :'merchant_reference_number' => :'merchantReferenceNumber', :'nature_of_dispute' => :'natureOfDispute', :'alert_type' => :'alertType', :'amount' => :'amount', :'sign' => :'sign', :'action' => :'action', :'card_type' => :'cardType', :'original_settlement_time' => :'originalSettlementTime', :'tracking_number' => :'trackingNumber', :'currency_code' => :'currencyCode', :'request_id' => :'requestId', :'response_due_time' => :'responseDueTime', :'time' => :'time', :'action_description' => :'actionDescription', :'customer_id' => :'customerId', :'reason_code' => :'reasonCode', :'representment_cp_time' => :'representmentCPTime', :'applications' => :'applications', :'event_requested_time' => :'eventRequestedTime' } end |
.swagger_types ⇒ Object
Attribute type mapping.
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 |
# File 'lib/cybersource_rest_client/models/reporting_v3_retrieval_details_get200_response_retrieval_details.rb', line 112 def self.swagger_types { :'processor_merchant_id' => :'String', :'merchant_name' => :'String', :'transaction_reference_number' => :'String', :'merchant_reference_number' => :'String', :'nature_of_dispute' => :'String', :'alert_type' => :'String', :'amount' => :'String', :'sign' => :'String', :'action' => :'String', :'card_type' => :'String', :'original_settlement_time' => :'DateTime', :'tracking_number' => :'String', :'currency_code' => :'String', :'request_id' => :'String', :'response_due_time' => :'DateTime', :'time' => :'DateTime', :'action_description' => :'String', :'customer_id' => :'String', :'reason_code' => :'String', :'representment_cp_time' => :'DateTime', :'applications' => :'String', :'event_requested_time' => :'DateTime' } end |
Instance Method Details
#==(o) ⇒ Object
Checks equality by comparing each attribute.
251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 |
# File 'lib/cybersource_rest_client/models/reporting_v3_retrieval_details_get200_response_retrieval_details.rb', line 251 def ==(o) return true if self.equal?(o) self.class == o.class && processor_merchant_id == o.processor_merchant_id && merchant_name == o.merchant_name && transaction_reference_number == o.transaction_reference_number && merchant_reference_number == o.merchant_reference_number && nature_of_dispute == o.nature_of_dispute && alert_type == o.alert_type && amount == o.amount && sign == o.sign && action == o.action && card_type == o.card_type && original_settlement_time == o.original_settlement_time && tracking_number == o.tracking_number && currency_code == o.currency_code && request_id == o.request_id && response_due_time == o.response_due_time && time == o.time && action_description == o.action_description && customer_id == o.customer_id && reason_code == o.reason_code && representment_cp_time == o.representment_cp_time && applications == o.applications && event_requested_time == o.event_requested_time end |
#_deserialize(type, value) ⇒ Object
Deserializes the data based on type
314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 |
# File 'lib/cybersource_rest_client/models/reporting_v3_retrieval_details_get200_response_retrieval_details.rb', line 314 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 = CyberSource.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
380 381 382 383 384 385 386 387 388 389 390 391 392 |
# File 'lib/cybersource_rest_client/models/reporting_v3_retrieval_details_get200_response_retrieval_details.rb', line 380 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
293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 |
# File 'lib/cybersource_rest_client/models/reporting_v3_retrieval_details_get200_response_retrieval_details.rb', line 293 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
280 281 282 |
# File 'lib/cybersource_rest_client/models/reporting_v3_retrieval_details_get200_response_retrieval_details.rb', line 280 def eql?(o) self == o end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
286 287 288 |
# File 'lib/cybersource_rest_client/models/reporting_v3_retrieval_details_get200_response_retrieval_details.rb', line 286 def hash [processor_merchant_id, merchant_name, transaction_reference_number, merchant_reference_number, nature_of_dispute, alert_type, amount, sign, action, card_type, original_settlement_time, tracking_number, currency_code, request_id, response_due_time, time, action_description, customer_id, reason_code, representment_cp_time, applications, event_requested_time].hash end |
#list_invalid_properties ⇒ Object
Show invalid properties with the reasons. Usually used together with valid?
238 239 240 241 |
# File 'lib/cybersource_rest_client/models/reporting_v3_retrieval_details_get200_response_retrieval_details.rb', line 238 def list_invalid_properties invalid_properties = Array.new invalid_properties end |
#to_body ⇒ Hash
to_body is an alias to to_hash (backward compatibility)
360 361 362 |
# File 'lib/cybersource_rest_client/models/reporting_v3_retrieval_details_get200_response_retrieval_details.rb', line 360 def to_body to_hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
366 367 368 369 370 371 372 373 374 |
# File 'lib/cybersource_rest_client/models/reporting_v3_retrieval_details_get200_response_retrieval_details.rb', line 366 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
354 355 356 |
# File 'lib/cybersource_rest_client/models/reporting_v3_retrieval_details_get200_response_retrieval_details.rb', line 354 def to_s to_hash.to_s end |
#valid? ⇒ Boolean
Check to see if the all the properties in the model are valid
245 246 247 |
# File 'lib/cybersource_rest_client/models/reporting_v3_retrieval_details_get200_response_retrieval_details.rb', line 245 def valid? true end |