Class: CyberSource::ReportingV3ChargebackDetailsGet200ResponseChargebackDetails
- Inherits:
-
Object
- Object
- CyberSource::ReportingV3ChargebackDetailsGet200ResponseChargebackDetails
- Defined in:
- lib/cybersource_rest_client/models/reporting_v3_chargeback_details_get200_response_chargeback_details.rb
Instance Attribute Summary collapse
-
#action ⇒ Object
Chargeback Action.
-
#action_description ⇒ Object
Chargeback Action Description.
-
#alert_type ⇒ Object
Chargeback Alert Type.
-
#amount ⇒ Object
Chargeback 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.
-
#pre_dispute_flag ⇒ Object
Pre Dispute Flag.
-
#processor_merchant_id ⇒ Object
Processor Merchant Id.
-
#reason_code ⇒ Object
Chargeback Reason Code.
-
#representment_cp_time ⇒ Object
Representment CP Date.
-
#request_id ⇒ Object
Request Id.
-
#response_due_time ⇒ Object
Response Due Date.
-
#sign ⇒ Object
Chargeback Sign.
-
#time ⇒ Object
Chargeback 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.
-
.json_map ⇒ Object
Attribute mapping from JSON key to ruby-style variable name.
-
.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 = {}) ⇒ ReportingV3ChargebackDetailsGet200ResponseChargebackDetails
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 = {}) ⇒ ReportingV3ChargebackDetailsGet200ResponseChargebackDetails
Initializes the object
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 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/cybersource_rest_client/models/reporting_v3_chargeback_details_get200_response_chargeback_details.rb', line 174 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 if attributes.has_key?(:'preDisputeFlag') self.pre_dispute_flag = attributes[:'preDisputeFlag'] end end |
Instance Attribute Details
#action ⇒ Object
Chargeback Action
41 42 43 |
# File 'lib/cybersource_rest_client/models/reporting_v3_chargeback_details_get200_response_chargeback_details.rb', line 41 def action @action end |
#action_description ⇒ Object
Chargeback Action Description
65 66 67 |
# File 'lib/cybersource_rest_client/models/reporting_v3_chargeback_details_get200_response_chargeback_details.rb', line 65 def action_description @action_description end |
#alert_type ⇒ Object
Chargeback Alert Type
32 33 34 |
# File 'lib/cybersource_rest_client/models/reporting_v3_chargeback_details_get200_response_chargeback_details.rb', line 32 def alert_type @alert_type end |
#amount ⇒ Object
Chargeback Amount
35 36 37 |
# File 'lib/cybersource_rest_client/models/reporting_v3_chargeback_details_get200_response_chargeback_details.rb', line 35 def amount @amount end |
#applications ⇒ Object
ICS Request Applications
77 78 79 |
# File 'lib/cybersource_rest_client/models/reporting_v3_chargeback_details_get200_response_chargeback_details.rb', line 77 def applications @applications end |
#card_type ⇒ Object
Card Type
44 45 46 |
# File 'lib/cybersource_rest_client/models/reporting_v3_chargeback_details_get200_response_chargeback_details.rb', line 44 def card_type @card_type end |
#currency_code ⇒ Object
Valid ISO 4217 ALPHA-3 currency code
53 54 55 |
# File 'lib/cybersource_rest_client/models/reporting_v3_chargeback_details_get200_response_chargeback_details.rb', line 53 def currency_code @currency_code end |
#customer_id ⇒ Object
Customer Id
68 69 70 |
# File 'lib/cybersource_rest_client/models/reporting_v3_chargeback_details_get200_response_chargeback_details.rb', line 68 def customer_id @customer_id end |
#event_requested_time ⇒ Object
Event Request Date
80 81 82 |
# File 'lib/cybersource_rest_client/models/reporting_v3_chargeback_details_get200_response_chargeback_details.rb', line 80 def event_requested_time @event_requested_time end |
#merchant_name ⇒ Object
Merchant Name
20 21 22 |
# File 'lib/cybersource_rest_client/models/reporting_v3_chargeback_details_get200_response_chargeback_details.rb', line 20 def merchant_name @merchant_name end |
#merchant_reference_number ⇒ Object
Merchant Reference Number
26 27 28 |
# File 'lib/cybersource_rest_client/models/reporting_v3_chargeback_details_get200_response_chargeback_details.rb', line 26 def merchant_reference_number @merchant_reference_number end |
#nature_of_dispute ⇒ Object
Nature of Dispute
29 30 31 |
# File 'lib/cybersource_rest_client/models/reporting_v3_chargeback_details_get200_response_chargeback_details.rb', line 29 def nature_of_dispute @nature_of_dispute end |
#original_settlement_time ⇒ Object
Original Settlement Date
47 48 49 |
# File 'lib/cybersource_rest_client/models/reporting_v3_chargeback_details_get200_response_chargeback_details.rb', line 47 def original_settlement_time @original_settlement_time end |
#pre_dispute_flag ⇒ Object
Pre Dispute Flag
83 84 85 |
# File 'lib/cybersource_rest_client/models/reporting_v3_chargeback_details_get200_response_chargeback_details.rb', line 83 def pre_dispute_flag @pre_dispute_flag end |
#processor_merchant_id ⇒ Object
Processor Merchant Id
17 18 19 |
# File 'lib/cybersource_rest_client/models/reporting_v3_chargeback_details_get200_response_chargeback_details.rb', line 17 def processor_merchant_id @processor_merchant_id end |
#reason_code ⇒ Object
Chargeback Reason Code
71 72 73 |
# File 'lib/cybersource_rest_client/models/reporting_v3_chargeback_details_get200_response_chargeback_details.rb', line 71 def reason_code @reason_code end |
#representment_cp_time ⇒ Object
Representment CP Date
74 75 76 |
# File 'lib/cybersource_rest_client/models/reporting_v3_chargeback_details_get200_response_chargeback_details.rb', line 74 def representment_cp_time @representment_cp_time end |
#request_id ⇒ Object
Request Id
56 57 58 |
# File 'lib/cybersource_rest_client/models/reporting_v3_chargeback_details_get200_response_chargeback_details.rb', line 56 def request_id @request_id end |
#response_due_time ⇒ Object
Response Due Date
59 60 61 |
# File 'lib/cybersource_rest_client/models/reporting_v3_chargeback_details_get200_response_chargeback_details.rb', line 59 def response_due_time @response_due_time end |
#sign ⇒ Object
Chargeback Sign
38 39 40 |
# File 'lib/cybersource_rest_client/models/reporting_v3_chargeback_details_get200_response_chargeback_details.rb', line 38 def sign @sign end |
#time ⇒ Object
Chargeback Date
62 63 64 |
# File 'lib/cybersource_rest_client/models/reporting_v3_chargeback_details_get200_response_chargeback_details.rb', line 62 def time @time end |
#tracking_number ⇒ Object
Tracking Number
50 51 52 |
# File 'lib/cybersource_rest_client/models/reporting_v3_chargeback_details_get200_response_chargeback_details.rb', line 50 def tracking_number @tracking_number end |
#transaction_reference_number ⇒ Object
Transaction Reference Number
23 24 25 |
# File 'lib/cybersource_rest_client/models/reporting_v3_chargeback_details_get200_response_chargeback_details.rb', line 23 def transaction_reference_number @transaction_reference_number end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
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 |
# File 'lib/cybersource_rest_client/models/reporting_v3_chargeback_details_get200_response_chargeback_details.rb', line 86 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', :'pre_dispute_flag' => :'preDisputeFlag' } end |
.json_map ⇒ Object
Attribute mapping from JSON key to ruby-style variable name.
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 |
# File 'lib/cybersource_rest_client/models/reporting_v3_chargeback_details_get200_response_chargeback_details.rb', line 115 def self.json_map { :'processor_merchant_id' => :'processor_merchant_id', :'merchant_name' => :'merchant_name', :'transaction_reference_number' => :'transaction_reference_number', :'merchant_reference_number' => :'merchant_reference_number', :'nature_of_dispute' => :'nature_of_dispute', :'alert_type' => :'alert_type', :'amount' => :'amount', :'sign' => :'sign', :'action' => :'action', :'card_type' => :'card_type', :'original_settlement_time' => :'original_settlement_time', :'tracking_number' => :'tracking_number', :'currency_code' => :'currency_code', :'request_id' => :'request_id', :'response_due_time' => :'response_due_time', :'time' => :'time', :'action_description' => :'action_description', :'customer_id' => :'customer_id', :'reason_code' => :'reason_code', :'representment_cp_time' => :'representment_cp_time', :'applications' => :'applications', :'event_requested_time' => :'event_requested_time', :'pre_dispute_flag' => :'pre_dispute_flag' } end |
.swagger_types ⇒ Object
Attribute type mapping.
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 |
# File 'lib/cybersource_rest_client/models/reporting_v3_chargeback_details_get200_response_chargeback_details.rb', line 144 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', :'pre_dispute_flag' => :'String' } end |
Instance Method Details
#==(o) ⇒ Object
Checks equality by comparing each attribute.
288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 |
# File 'lib/cybersource_rest_client/models/reporting_v3_chargeback_details_get200_response_chargeback_details.rb', line 288 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 && pre_dispute_flag == o.pre_dispute_flag end |
#_deserialize(type, value) ⇒ Object
Deserializes the data based on type
352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 |
# File 'lib/cybersource_rest_client/models/reporting_v3_chargeback_details_get200_response_chargeback_details.rb', line 352 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
418 419 420 421 422 423 424 425 426 427 428 429 430 |
# File 'lib/cybersource_rest_client/models/reporting_v3_chargeback_details_get200_response_chargeback_details.rb', line 418 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
331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 |
# File 'lib/cybersource_rest_client/models/reporting_v3_chargeback_details_get200_response_chargeback_details.rb', line 331 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("#{self.class.json_map[key]}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) }) end elsif !attributes[self.class.attribute_map[key]].nil? self.send("#{self.class.json_map[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
318 319 320 |
# File 'lib/cybersource_rest_client/models/reporting_v3_chargeback_details_get200_response_chargeback_details.rb', line 318 def eql?(o) self == o end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
324 325 326 |
# File 'lib/cybersource_rest_client/models/reporting_v3_chargeback_details_get200_response_chargeback_details.rb', line 324 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, pre_dispute_flag].hash end |
#list_invalid_properties ⇒ Object
Show invalid properties with the reasons. Usually used together with valid?
275 276 277 278 |
# File 'lib/cybersource_rest_client/models/reporting_v3_chargeback_details_get200_response_chargeback_details.rb', line 275 def list_invalid_properties invalid_properties = Array.new invalid_properties end |
#to_body ⇒ Hash
to_body is an alias to to_hash (backward compatibility)
398 399 400 |
# File 'lib/cybersource_rest_client/models/reporting_v3_chargeback_details_get200_response_chargeback_details.rb', line 398 def to_body to_hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
404 405 406 407 408 409 410 411 412 |
# File 'lib/cybersource_rest_client/models/reporting_v3_chargeback_details_get200_response_chargeback_details.rb', line 404 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
392 393 394 |
# File 'lib/cybersource_rest_client/models/reporting_v3_chargeback_details_get200_response_chargeback_details.rb', line 392 def to_s to_hash.to_s end |
#valid? ⇒ Boolean
Check to see if the all the properties in the model are valid
282 283 284 |
# File 'lib/cybersource_rest_client/models/reporting_v3_chargeback_details_get200_response_chargeback_details.rb', line 282 def valid? true end |