Class: CyberSource::PtsV2PaymentsPost201ResponseProcessorInformation

Inherits:
Object
  • Object
show all
Defined in:
lib/cybersource_rest_client/models/pts_v2_payments_post201_response_processor_information.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ PtsV2PaymentsPost201ResponseProcessorInformation

Initializes the object

Parameters:

  • attributes (Hash) (defaults to: {})

    Model attributes in the form of hash



253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
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
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
351
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
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
# File 'lib/cybersource_rest_client/models/pts_v2_payments_post201_response_processor_information.rb', line 253

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?(:'authIndicator')
    self.auth_indicator = attributes[:'authIndicator']
  end

  if attributes.has_key?(:'approvalCode')
    self.approval_code = attributes[:'approvalCode']
  end

  if attributes.has_key?(:'cardReferenceData')
    self.card_reference_data = attributes[:'cardReferenceData']
  end

  if attributes.has_key?(:'transactionId')
    self.transaction_id = attributes[:'transactionId']
  end

  if attributes.has_key?(:'networkTransactionId')
    self.network_transaction_id = attributes[:'networkTransactionId']
  end

  if attributes.has_key?(:'responseCode')
    self.response_code = attributes[:'responseCode']
  end

  if attributes.has_key?(:'responseCodeSource')
    self.response_code_source = attributes[:'responseCodeSource']
  end

  if attributes.has_key?(:'responseDetails')
    self.response_details = attributes[:'responseDetails']
  end

  if attributes.has_key?(:'responseCategoryCode')
    self.response_category_code = attributes[:'responseCategoryCode']
  end

  if attributes.has_key?(:'forwardedAcquirerCode')
    self.forwarded_acquirer_code = attributes[:'forwardedAcquirerCode']
  end

  if attributes.has_key?(:'settlementDate')
    self.settlement_date = attributes[:'settlementDate']
  end

  if attributes.has_key?(:'avs')
    self.avs = attributes[:'avs']
  end

  if attributes.has_key?(:'cardVerification')
    self.card_verification = attributes[:'cardVerification']
  end

  if attributes.has_key?(:'merchantAdvice')
    self.merchant_advice = attributes[:'merchantAdvice']
  end

  if attributes.has_key?(:'electronicVerificationResults')
    self.electronic_verification_results = attributes[:'electronicVerificationResults']
  end

  if attributes.has_key?(:'achVerification')
    self.ach_verification = attributes[:'achVerification']
  end

  if attributes.has_key?(:'customer')
    self.customer = attributes[:'customer']
  end

  if attributes.has_key?(:'consumerAuthenticationResponse')
    self.consumer_authentication_response = attributes[:'consumerAuthenticationResponse']
  end

  if attributes.has_key?(:'systemTraceAuditNumber')
    self.system_trace_audit_number = attributes[:'systemTraceAuditNumber']
  end

  if attributes.has_key?(:'paymentAccountReferenceNumber')
    self. = attributes[:'paymentAccountReferenceNumber']
  end

  if attributes.has_key?(:'transactionIntegrityCode')
    self.transaction_integrity_code = attributes[:'transactionIntegrityCode']
  end

  if attributes.has_key?(:'amexVerbalAuthReferenceNumber')
    self.amex_verbal_auth_reference_number = attributes[:'amexVerbalAuthReferenceNumber']
  end

  if attributes.has_key?(:'masterCardServiceCode')
    self.master_card_service_code = attributes[:'masterCardServiceCode']
  end

  if attributes.has_key?(:'masterCardServiceReplyCode')
    self.master_card_service_reply_code = attributes[:'masterCardServiceReplyCode']
  end

  if attributes.has_key?(:'masterCardAuthenticationType')
    self.master_card_authentication_type = attributes[:'masterCardAuthenticationType']
  end

  if attributes.has_key?(:'name')
    self.name = attributes[:'name']
  end

  if attributes.has_key?(:'routing')
    self.routing = attributes[:'routing']
  end

  if attributes.has_key?(:'merchantNumber')
    self.merchant_number = attributes[:'merchantNumber']
  end

  if attributes.has_key?(:'retrievalReferenceNumber')
    self.retrieval_reference_number = attributes[:'retrievalReferenceNumber']
  end

  if attributes.has_key?(:'paymentUrl')
    self.payment_url = attributes[:'paymentUrl']
  end

  if attributes.has_key?(:'completeUrl')
    self.complete_url = attributes[:'completeUrl']
  end

  if attributes.has_key?(:'signature')
    self.signature = attributes[:'signature']
  end

  if attributes.has_key?(:'publicKey')
    self.public_key = attributes[:'publicKey']
  end

  if attributes.has_key?(:'sellerProtection')
    self.seller_protection = attributes[:'sellerProtection']
  end

  if attributes.has_key?(:'transactionExpiryDate')
    self.transaction_expiry_date = attributes[:'transactionExpiryDate']
  end

  if attributes.has_key?(:'customUrl')
    self.custom_url = attributes[:'customUrl']
  end

  if attributes.has_key?(:'schemeAssignedId')
    self.scheme_assigned_id = attributes[:'schemeAssignedId']
  end

  if attributes.has_key?(:'deviceUrl')
    self.device_url = attributes[:'deviceUrl']
  end
end

Instance Attribute Details

#ach_verificationObject

Returns the value of attribute ach_verification.



57
58
59
# File 'lib/cybersource_rest_client/models/pts_v2_payments_post201_response_processor_information.rb', line 57

def ach_verification
  @ach_verification
end

#amex_verbal_auth_reference_numberObject

Referral response number for a verbal authorization with FDMS Nashville when using an American Express card. Give this number to American Express when you call them for the verbal authorization.



73
74
75
# File 'lib/cybersource_rest_client/models/pts_v2_payments_post201_response_processor_information.rb', line 73

def amex_verbal_auth_reference_number
  @amex_verbal_auth_reference_number
end

#approval_codeObject

Authorization code. Returned only when the processor returns this value. The length of this value depends on your processor. Returned by authorization service. #### PIN debit Authorization code that is returned by the processor. Returned by PIN debit credit. #### Elavon Encrypted Account Number Program The returned value is OFFLINE. #### TSYS Acquiring Solutions The returned value for a successful zero amount authorization is 000000.



20
21
22
# File 'lib/cybersource_rest_client/models/pts_v2_payments_post201_response_processor_information.rb', line 20

def approval_code
  @approval_code
end

#auth_indicatorObject

Flag that specifies the purpose of the authorization. Possible values: - ‘0`: Preauthorization - `1`: Final authorization



17
18
19
# File 'lib/cybersource_rest_client/models/pts_v2_payments_post201_response_processor_information.rb', line 17

def auth_indicator
  @auth_indicator
end

#avsObject

Returns the value of attribute avs.



49
50
51
# File 'lib/cybersource_rest_client/models/pts_v2_payments_post201_response_processor_information.rb', line 49

def avs
  @avs
end

#card_reference_dataObject

The Scheme reference data is a variable length data element up to a maximum of 56 characters. It may be sent by the acquirer in the authorisation response message, and by the terminal (unchanged) in subsequent authorisation request messages associated with the same transaction. This field is used by Streamline and HSBC UK only, at present.



23
24
25
# File 'lib/cybersource_rest_client/models/pts_v2_payments_post201_response_processor_information.rb', line 23

def card_reference_data
  @card_reference_data
end

#card_verificationObject

Returns the value of attribute card_verification.



51
52
53
# File 'lib/cybersource_rest_client/models/pts_v2_payments_post201_response_processor_information.rb', line 51

def card_verification
  @card_verification
end

#complete_urlObject

The redirect URL for forwarding the consumer to complete page. This redirect needed by PSP to track browser information of consumer. PSP then redirect consumer to merchant success URL.



99
100
101
# File 'lib/cybersource_rest_client/models/pts_v2_payments_post201_response_processor_information.rb', line 99

def complete_url
  @complete_url
end

#consumer_authentication_responseObject

Returns the value of attribute consumer_authentication_response.



61
62
63
# File 'lib/cybersource_rest_client/models/pts_v2_payments_post201_response_processor_information.rb', line 61

def consumer_authentication_response
  @consumer_authentication_response
end

#custom_urlObject

For merchants to declare customs Customs declaration service URL.



111
112
113
# File 'lib/cybersource_rest_client/models/pts_v2_payments_post201_response_processor_information.rb', line 111

def custom_url
  @custom_url
end

#customerObject

Returns the value of attribute customer.



59
60
61
# File 'lib/cybersource_rest_client/models/pts_v2_payments_post201_response_processor_information.rb', line 59

def customer
  @customer
end

#device_urlObject

The QR code value. Convert this value into an image and send it to the POS terminal to be displayed. The terminal can also perform the conversion. The value is a URL like in the example below: qr.alipay.com/pmxabcka1ts5grar12.



117
118
119
# File 'lib/cybersource_rest_client/models/pts_v2_payments_post201_response_processor_information.rb', line 117

def device_url
  @device_url
end

#electronic_verification_resultsObject

Returns the value of attribute electronic_verification_results.



55
56
57
# File 'lib/cybersource_rest_client/models/pts_v2_payments_post201_response_processor_information.rb', line 55

def electronic_verification_results
  @electronic_verification_results
end

#forwarded_acquirer_codeObject

Name of the Japanese acquirer that processed the transaction. Returned only for JCN Gateway. Please contact the CyberSource Japan Support Group for more information.



44
45
46
# File 'lib/cybersource_rest_client/models/pts_v2_payments_post201_response_processor_information.rb', line 44

def forwarded_acquirer_code
  @forwarded_acquirer_code
end

#master_card_authentication_typeObject

Type of authentication for which the transaction qualifies as determined by the Mastercard authentication service, which confirms the identity of the cardholder. Mastercard provides this value to CyberSource. Possible values: - ‘1`: Transaction qualifies for Mastercard authentication type 1. - `2`: Transaction qualifies for Mastercard authentication type 2. #### CyberSource through VisaNet The value for this field corresponds to the following data in the TC 33 capture file: - Record: CP01 TCR6 - Position: 132 - Field: Mastercard Member Defined service. Note This field is returned only for CyberSource through VisaNet.



82
83
84
# File 'lib/cybersource_rest_client/models/pts_v2_payments_post201_response_processor_information.rb', line 82

def master_card_authentication_type
  @master_card_authentication_type
end

#master_card_service_codeObject

Mastercard service that was used for the transaction. Mastercard provides this value to CyberSource. Possible value: - 53: Mastercard card-on-file token service #### CyberSource through VisaNet The value for this field corresponds to the following data in the TC 33 capture file: - Record: CP01 TCR6 - Position: 133-134 - Field: Mastercard Merchant on-behalf service. Note This field is returned only for CyberSource through VisaNet.



76
77
78
# File 'lib/cybersource_rest_client/models/pts_v2_payments_post201_response_processor_information.rb', line 76

def master_card_service_code
  @master_card_service_code
end

#master_card_service_reply_codeObject

Result of the Mastercard card-on-file token service. Mastercard provides this value to CyberSource. Possible values: - ‘C`: Service completed successfully. - `F`: One of the following: - Incorrect Mastercard POS entry mode. The Mastercard POS entry mode should be 81 for an authorization or authorization reversal. - Incorrect Mastercard POS entry mode. The Mastercard POS entry mode should be 01 for a tokenized request. - Token requestor ID is missing or formatted incorrectly. - `I`: One of the following: - Invalid token requestor ID. - Suspended or deactivated token. - Invalid token (not in mapping table). - `T`: Invalid combination of token requestor ID and token. - `U`: Expired token. - `W`: Primary account number (PAN) listed in electronic warning bulletin. Note This field is returned only for **CyberSource through VisaNet**.



79
80
81
# File 'lib/cybersource_rest_client/models/pts_v2_payments_post201_response_processor_information.rb', line 79

def master_card_service_reply_code
  @master_card_service_reply_code
end

#merchant_adviceObject

Returns the value of attribute merchant_advice.



53
54
55
# File 'lib/cybersource_rest_client/models/pts_v2_payments_post201_response_processor_information.rb', line 53

def merchant_advice
  @merchant_advice
end

#merchant_numberObject

Identifier that was assigned to you by your acquirer. This value must be printed on the receipt. #### Returned by Authorizations and Credits. This reply field is only supported by merchants who have installed client software on their POS terminals and use these processors: - American Express Direct - Credit Mutuel-CIC - FDC Nashville Global - OmniPay Direct - SIX



90
91
92
# File 'lib/cybersource_rest_client/models/pts_v2_payments_post201_response_processor_information.rb', line 90

def merchant_number
  @merchant_number
end

#nameObject

Name of the Processor.



85
86
87
# File 'lib/cybersource_rest_client/models/pts_v2_payments_post201_response_processor_information.rb', line 85

def name
  @name
end

#network_transaction_idObject

Same value as ‘processorInformation.transactionId`



29
30
31
# File 'lib/cybersource_rest_client/models/pts_v2_payments_post201_response_processor_information.rb', line 29

def network_transaction_id
  @network_transaction_id
end

#payment_account_reference_numberObject

Visa-generated reference number that identifies a card-present transaction for which you provided one of the following: - Visa primary account number (PAN) - Visa-generated token for a PAN This reference number serves as a link to the cardholder account and to all transactions for that account. This reply field is returned only for CyberSource through VisaNet. Note On CyberSource through VisaNet, the value for this field corresponds to the following data in the TC 33 capture file: - Record: CP01 TCR8 - Position: 79-110 - Field: Payment Account Reference The TC 33 Capture file contains information about the purchases and refunds that a merchant submits to CyberSource. CyberSource through VisaNet creates the TC 33 Capture file at the end of the day and sends it to the merchant’s acquirer, who uses this information to facilitate end-of-day clearing processing with payment networks.



67
68
69
# File 'lib/cybersource_rest_client/models/pts_v2_payments_post201_response_processor_information.rb', line 67

def 
  @payment_account_reference_number
end

#payment_urlObject

Direct the customer to this URL to complete the payment.



96
97
98
# File 'lib/cybersource_rest_client/models/pts_v2_payments_post201_response_processor_information.rb', line 96

def payment_url
  @payment_url
end

#public_keyObject

Returns the value of attribute public_key.



103
104
105
# File 'lib/cybersource_rest_client/models/pts_v2_payments_post201_response_processor_information.rb', line 103

def public_key
  @public_key
end

#response_category_codeObject

Processor-defined response category code. The associated detail error code is in the ‘processorInformation.responseCode` or `issuerInformation.responseCode` field of the service you requested. This field is supported only for: - Japanese issuers - Domestic transactions in Japan - Comercio Latino—processor transaction ID required for troubleshooting #### Maximum length for processors - Comercio Latino: 36 - All other processors: 3



41
42
43
# File 'lib/cybersource_rest_client/models/pts_v2_payments_post201_response_processor_information.rb', line 41

def response_category_code
  @response_category_code
end

#response_codeObject

For most processors, this is the error message sent directly from the bank. Returned only when the processor returns this value. Important Do not use this field to evaluate the result of the authorization. #### PIN debit Response value that is returned by the processor or bank. Important Do not use this field to evaluate the results of the transaction request. Returned by PIN debit credit, PIN debit purchase, and PIN debit reversal. #### AIBMS If this value is ‘08`, you can accept the transaction if the customer provides you with identification. #### Atos This value is the response code sent from Atos and it might also include the response code from the bank. Format: `aa,bb` with the two values separated by a comma and where: - `aa` is the two-digit error message from Atos. - `bb` is the optional two-digit error message from the bank. #### Comercio Latino This value is the status code and the error or response code received from the processor separated by a colon. Format: [status code]:E[error code] or [status code]:R[response code] Example `2:R06` #### JCN Gateway Processor-defined detail error code. The associated response category code is in the `processorInformation.responseCategoryCode` field. String (3)



32
33
34
# File 'lib/cybersource_rest_client/models/pts_v2_payments_post201_response_processor_information.rb', line 32

def response_code
  @response_code
end

#response_code_sourceObject

Used by Visa only and contains the response source/reason code that identifies the source of the response decision.



35
36
37
# File 'lib/cybersource_rest_client/models/pts_v2_payments_post201_response_processor_information.rb', line 35

def response_code_source
  @response_code_source
end

#response_detailsObject

This field might contain information about a decline. This field is supported only for **CyberSource through VisaNet**.



38
39
40
# File 'lib/cybersource_rest_client/models/pts_v2_payments_post201_response_processor_information.rb', line 38

def response_details
  @response_details
end

#retrieval_reference_numberObject

#### Ingenico ePayments Unique number that CyberSource generates to identify the transaction. You can use this value to identify transactions in the Ingenico ePayments Collections Report, which provides settlement information. Contact customer support for information about the report. ### CyberSource through VisaNet Retrieval request number.



93
94
95
# File 'lib/cybersource_rest_client/models/pts_v2_payments_post201_response_processor_information.rb', line 93

def retrieval_reference_number
  @retrieval_reference_number
end

#routingObject

Returns the value of attribute routing.



87
88
89
# File 'lib/cybersource_rest_client/models/pts_v2_payments_post201_response_processor_information.rb', line 87

def routing
  @routing
end

#scheme_assigned_idObject

Unique id assigned to a merchant by the APM and not PSP The merchant ID, as boarded with Alipay



114
115
116
# File 'lib/cybersource_rest_client/models/pts_v2_payments_post201_response_processor_information.rb', line 114

def scheme_assigned_id
  @scheme_assigned_id
end

#seller_protectionObject

Returns the value of attribute seller_protection.



105
106
107
# File 'lib/cybersource_rest_client/models/pts_v2_payments_post201_response_processor_information.rb', line 105

def seller_protection
  @seller_protection
end

#settlement_dateObject

Field contains a settlement date. The date is in mmdd format, where: mm = month and dd = day.



47
48
49
# File 'lib/cybersource_rest_client/models/pts_v2_payments_post201_response_processor_information.rb', line 47

def settlement_date
  @settlement_date
end

#signatureObject

Returns the value of attribute signature.



101
102
103
# File 'lib/cybersource_rest_client/models/pts_v2_payments_post201_response_processor_information.rb', line 101

def signature
  @signature
end

#system_trace_audit_numberObject

This field is returned only for **American Express Direct** and **CyberSource through VisaNet**. Returned by authorization and incremental authorization services. #### American Express Direct System trace audit number (STAN). This value identifies the transaction and is useful when investigating a chargeback dispute. #### CyberSource through VisaNet System trace number that must be printed on the customer’s receipt.



64
65
66
# File 'lib/cybersource_rest_client/models/pts_v2_payments_post201_response_processor_information.rb', line 64

def system_trace_audit_number
  @system_trace_audit_number
end

#transaction_expiry_dateObject

The date on which the transaction expires and payment cannot be made.



108
109
110
# File 'lib/cybersource_rest_client/models/pts_v2_payments_post201_response_processor_information.rb', line 108

def transaction_expiry_date
  @transaction_expiry_date
end

#transaction_idObject

Network transaction identifier (TID). You can use this value to identify a specific transaction when you are discussing the transaction with your processor. Not all processors provide this value. Returned by the authorization service. #### PIN debit Transaction identifier generated by the processor. Returned by PIN debit credit. #### GPX Processor transaction ID. #### Cielo For Cielo, this value is the non-sequential unit (NSU) and is supported for all transactions. The value is generated by Cielo or the issuing bank. #### Comercio Latino For Comercio Latino, this value is the proof of sale or non-sequential unit (NSU) number generated by the acquirers Cielo and Rede, or the issuing bank. #### CyberSource through VisaNet and GPN For details about this value for CyberSource through VisaNet and GPN, see "Network Transaction Identifiers" in [Credit Card Services Using the SCMP API.](apps.cybersource.com/library/documentation/dev_guides/CC_Svcs_SCMP_API/html/) #### Moneris This value identifies the transaction on a host system. It contains the following information: - Terminal used to process the transaction - Shift during which the transaction took place - Batch number - Transaction number within the batch You must store this value. If you give the customer a receipt, display this value on the receipt. Example For the value 66012345001069003: - Terminal ID = 66012345 - Shift number = 001 - Batch number = 069 - Transaction number = 003



26
27
28
# File 'lib/cybersource_rest_client/models/pts_v2_payments_post201_response_processor_information.rb', line 26

def transaction_id
  @transaction_id
end

#transaction_integrity_codeObject

Transaction integrity classification provided by Mastercard. This value specifies Mastercard’s evaluation of the transaction’s safety and security. This field is returned only for **CyberSource through VisaNet**. For card-present transactions, possible values: - ‘A1`: EMV or token in a secure, trusted environment - `B1`: EMV or chip equivalent - `C1`: Magnetic stripe - `E1`: Key entered - `U0`: Unclassified For card-not-present transactions, possible values: - `A2`: Digital transactions - `B2`: Authenticated checkout - `C2`: Transaction validation - `D2`: Enhanced data - `E2`: Generic messaging - `U0`: Unclassified For information about these values, contact Mastercard or your acquirer. #### CyberSource through VisaNet The value for this field corresponds to the following data in the TC 33 capture file,<sup>1</sup>: - Record: CP01 TCR6 - Position: 136-137 - Field: Mastercard Transaction Integrity Classification <sup>1</sup> The TC 33 Capture file contains information about the purchases and refunds that a merchant submits to CyberSource. CyberSource through VisaNet creates the TC 33 Capture file at the end of the day and sends it to the merchant’s acquirer, who uses this information to facilitate end-of-day clearing processing with payment networks.



70
71
72
# File 'lib/cybersource_rest_client/models/pts_v2_payments_post201_response_processor_information.rb', line 70

def transaction_integrity_code
  @transaction_integrity_code
end

Class Method Details

.attribute_mapObject

Attribute mapping from ruby-style variable name to JSON key.



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
# File 'lib/cybersource_rest_client/models/pts_v2_payments_post201_response_processor_information.rb', line 120

def self.attribute_map
  {
    :'auth_indicator' => :'authIndicator',
    :'approval_code' => :'approvalCode',
    :'card_reference_data' => :'cardReferenceData',
    :'transaction_id' => :'transactionId',
    :'network_transaction_id' => :'networkTransactionId',
    :'response_code' => :'responseCode',
    :'response_code_source' => :'responseCodeSource',
    :'response_details' => :'responseDetails',
    :'response_category_code' => :'responseCategoryCode',
    :'forwarded_acquirer_code' => :'forwardedAcquirerCode',
    :'settlement_date' => :'settlementDate',
    :'avs' => :'avs',
    :'card_verification' => :'cardVerification',
    :'merchant_advice' => :'merchantAdvice',
    :'electronic_verification_results' => :'electronicVerificationResults',
    :'ach_verification' => :'achVerification',
    :'customer' => :'customer',
    :'consumer_authentication_response' => :'consumerAuthenticationResponse',
    :'system_trace_audit_number' => :'systemTraceAuditNumber',
    :'payment_account_reference_number' => :'paymentAccountReferenceNumber',
    :'transaction_integrity_code' => :'transactionIntegrityCode',
    :'amex_verbal_auth_reference_number' => :'amexVerbalAuthReferenceNumber',
    :'master_card_service_code' => :'masterCardServiceCode',
    :'master_card_service_reply_code' => :'masterCardServiceReplyCode',
    :'master_card_authentication_type' => :'masterCardAuthenticationType',
    :'name' => :'name',
    :'routing' => :'routing',
    :'merchant_number' => :'merchantNumber',
    :'retrieval_reference_number' => :'retrievalReferenceNumber',
    :'payment_url' => :'paymentUrl',
    :'complete_url' => :'completeUrl',
    :'signature' => :'signature',
    :'public_key' => :'publicKey',
    :'seller_protection' => :'sellerProtection',
    :'transaction_expiry_date' => :'transactionExpiryDate',
    :'custom_url' => :'customUrl',
    :'scheme_assigned_id' => :'schemeAssignedId',
    :'device_url' => :'deviceUrl'
  }
end

.json_mapObject

Attribute mapping from JSON key to ruby-style variable name.



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
# File 'lib/cybersource_rest_client/models/pts_v2_payments_post201_response_processor_information.rb', line 164

def self.json_map
  {
    :'auth_indicator' => :'auth_indicator',
    :'approval_code' => :'approval_code',
    :'card_reference_data' => :'card_reference_data',
    :'transaction_id' => :'transaction_id',
    :'network_transaction_id' => :'network_transaction_id',
    :'response_code' => :'response_code',
    :'response_code_source' => :'response_code_source',
    :'response_details' => :'response_details',
    :'response_category_code' => :'response_category_code',
    :'forwarded_acquirer_code' => :'forwarded_acquirer_code',
    :'settlement_date' => :'settlement_date',
    :'avs' => :'avs',
    :'card_verification' => :'card_verification',
    :'merchant_advice' => :'merchant_advice',
    :'electronic_verification_results' => :'electronic_verification_results',
    :'ach_verification' => :'ach_verification',
    :'customer' => :'customer',
    :'consumer_authentication_response' => :'consumer_authentication_response',
    :'system_trace_audit_number' => :'system_trace_audit_number',
    :'payment_account_reference_number' => :'payment_account_reference_number',
    :'transaction_integrity_code' => :'transaction_integrity_code',
    :'amex_verbal_auth_reference_number' => :'amex_verbal_auth_reference_number',
    :'master_card_service_code' => :'master_card_service_code',
    :'master_card_service_reply_code' => :'master_card_service_reply_code',
    :'master_card_authentication_type' => :'master_card_authentication_type',
    :'name' => :'name',
    :'routing' => :'routing',
    :'merchant_number' => :'merchant_number',
    :'retrieval_reference_number' => :'retrieval_reference_number',
    :'payment_url' => :'payment_url',
    :'complete_url' => :'complete_url',
    :'signature' => :'signature',
    :'public_key' => :'public_key',
    :'seller_protection' => :'seller_protection',
    :'transaction_expiry_date' => :'transaction_expiry_date',
    :'custom_url' => :'custom_url',
    :'scheme_assigned_id' => :'scheme_assigned_id',
    :'device_url' => :'device_url'
  }
end

.swagger_typesObject

Attribute type mapping.



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
# File 'lib/cybersource_rest_client/models/pts_v2_payments_post201_response_processor_information.rb', line 208

def self.swagger_types
  {
    :'auth_indicator' => :'String',
    :'approval_code' => :'String',
    :'card_reference_data' => :'String',
    :'transaction_id' => :'String',
    :'network_transaction_id' => :'String',
    :'response_code' => :'String',
    :'response_code_source' => :'String',
    :'response_details' => :'String',
    :'response_category_code' => :'String',
    :'forwarded_acquirer_code' => :'String',
    :'settlement_date' => :'String',
    :'avs' => :'PtsV2PaymentsPost201ResponseProcessorInformationAvs',
    :'card_verification' => :'PtsV2PaymentsPost201ResponseProcessorInformationCardVerification',
    :'merchant_advice' => :'PtsV2PaymentsPost201ResponseProcessorInformationMerchantAdvice',
    :'electronic_verification_results' => :'PtsV2PaymentsPost201ResponseProcessorInformationElectronicVerificationResults',
    :'ach_verification' => :'PtsV2PaymentsPost201ResponseProcessorInformationAchVerification',
    :'customer' => :'PtsV2PaymentsPost201ResponseProcessorInformationCustomer',
    :'consumer_authentication_response' => :'PtsV2PaymentsPost201ResponseProcessorInformationConsumerAuthenticationResponse',
    :'system_trace_audit_number' => :'String',
    :'payment_account_reference_number' => :'String',
    :'transaction_integrity_code' => :'String',
    :'amex_verbal_auth_reference_number' => :'String',
    :'master_card_service_code' => :'String',
    :'master_card_service_reply_code' => :'String',
    :'master_card_authentication_type' => :'String',
    :'name' => :'String',
    :'routing' => :'PtsV2PaymentsPost201ResponseProcessorInformationRouting',
    :'merchant_number' => :'String',
    :'retrieval_reference_number' => :'String',
    :'payment_url' => :'String',
    :'complete_url' => :'String',
    :'signature' => :'String',
    :'public_key' => :'String',
    :'seller_protection' => :'PtsV2PaymentsPost201ResponseProcessorInformationSellerProtection',
    :'transaction_expiry_date' => :'String',
    :'custom_url' => :'String',
    :'scheme_assigned_id' => :'String',
    :'device_url' => :'String'
  }
end

Instance Method Details

#==(o) ⇒ Object

Checks equality by comparing each attribute.

Parameters:

  • Object (Object)

    to be compared



577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
# File 'lib/cybersource_rest_client/models/pts_v2_payments_post201_response_processor_information.rb', line 577

def ==(o)
  return true if self.equal?(o)
  self.class == o.class &&
      auth_indicator == o.auth_indicator &&
      approval_code == o.approval_code &&
      card_reference_data == o.card_reference_data &&
      transaction_id == o.transaction_id &&
      network_transaction_id == o.network_transaction_id &&
      response_code == o.response_code &&
      response_code_source == o.response_code_source &&
      response_details == o.response_details &&
      response_category_code == o.response_category_code &&
      forwarded_acquirer_code == o.forwarded_acquirer_code &&
      settlement_date == o.settlement_date &&
      avs == o.avs &&
      card_verification == o.card_verification &&
      merchant_advice == o.merchant_advice &&
      electronic_verification_results == o.electronic_verification_results &&
      ach_verification == o.ach_verification &&
      customer == o.customer &&
      consumer_authentication_response == o.consumer_authentication_response &&
      system_trace_audit_number == o.system_trace_audit_number &&
       == o. &&
      transaction_integrity_code == o.transaction_integrity_code &&
      amex_verbal_auth_reference_number == o.amex_verbal_auth_reference_number &&
      master_card_service_code == o.master_card_service_code &&
      master_card_service_reply_code == o.master_card_service_reply_code &&
      master_card_authentication_type == o.master_card_authentication_type &&
      name == o.name &&
      routing == o.routing &&
      merchant_number == o.merchant_number &&
      retrieval_reference_number == o.retrieval_reference_number &&
      payment_url == o.payment_url &&
      complete_url == o.complete_url &&
      signature == o.signature &&
      public_key == o.public_key &&
      seller_protection == o.seller_protection &&
      transaction_expiry_date == o.transaction_expiry_date &&
      custom_url == o.custom_url &&
      scheme_assigned_id == o.scheme_assigned_id &&
      device_url == o.device_url
end

#_deserialize(type, value) ⇒ Object

Deserializes the data based on type

Parameters:

  • string

    type Data type

  • string

    value Value to be deserialized

Returns:

  • (Object)

    Deserialized data



656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
# File 'lib/cybersource_rest_client/models/pts_v2_payments_post201_response_processor_information.rb', line 656

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

Parameters:

  • value (Object)

    Any valid value

Returns:

  • (Hash)

    Returns the value in the form of hash



722
723
724
725
726
727
728
729
730
731
732
733
734
# File 'lib/cybersource_rest_client/models/pts_v2_payments_post201_response_processor_information.rb', line 722

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

Parameters:

  • attributes (Hash)

    Model attributes in the form of hash

Returns:

  • (Object)

    Returns the model itself



635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
# File 'lib/cybersource_rest_client/models/pts_v2_payments_post201_response_processor_information.rb', line 635

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

Parameters:

  • Object (Object)

    to be compared

Returns:

  • (Boolean)

See Also:

  • `==` method


622
623
624
# File 'lib/cybersource_rest_client/models/pts_v2_payments_post201_response_processor_information.rb', line 622

def eql?(o)
  self == o
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



628
629
630
# File 'lib/cybersource_rest_client/models/pts_v2_payments_post201_response_processor_information.rb', line 628

def hash
  [auth_indicator, approval_code, card_reference_data, transaction_id, network_transaction_id, response_code, response_code_source, response_details, response_category_code, forwarded_acquirer_code, settlement_date, avs, card_verification, merchant_advice, electronic_verification_results, ach_verification, customer, consumer_authentication_response, system_trace_audit_number, , transaction_integrity_code, amex_verbal_auth_reference_number, master_card_service_code, master_card_service_reply_code, master_card_authentication_type, name, routing, merchant_number, retrieval_reference_number, payment_url, complete_url, signature, public_key, seller_protection, transaction_expiry_date, custom_url, scheme_assigned_id, device_url].hash
end

#list_invalid_propertiesObject

Show invalid properties with the reasons. Usually used together with valid?

Returns:

  • Array for valid properties with the reasons



414
415
416
417
# File 'lib/cybersource_rest_client/models/pts_v2_payments_post201_response_processor_information.rb', line 414

def list_invalid_properties
  invalid_properties = Array.new
  invalid_properties
end

#to_bodyHash

to_body is an alias to to_hash (backward compatibility)

Returns:

  • (Hash)

    Returns the object in the form of hash



702
703
704
# File 'lib/cybersource_rest_client/models/pts_v2_payments_post201_response_processor_information.rb', line 702

def to_body
  to_hash
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



708
709
710
711
712
713
714
715
716
# File 'lib/cybersource_rest_client/models/pts_v2_payments_post201_response_processor_information.rb', line 708

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_sString

Returns the string representation of the object

Returns:

  • (String)

    String presentation of the object



696
697
698
# File 'lib/cybersource_rest_client/models/pts_v2_payments_post201_response_processor_information.rb', line 696

def to_s
  to_hash.to_s
end

#valid?Boolean

Check to see if the all the properties in the model are valid

Returns:

  • (Boolean)

    true if the model is valid



421
422
423
# File 'lib/cybersource_rest_client/models/pts_v2_payments_post201_response_processor_information.rb', line 421

def valid?
  true
end