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



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

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
end

Instance Attribute Details

#ach_verificationObject

Returns the value of attribute ach_verification.



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

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.



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

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.



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

def approval_code
  @approval_code
end

#auth_indicatorObject

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



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

def auth_indicator
  @auth_indicator
end

#avsObject

Returns the value of attribute avs.



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

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.



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

def card_reference_data
  @card_reference_data
end

#card_verificationObject

Returns the value of attribute card_verification.



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

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.



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

def complete_url
  @complete_url
end

#consumer_authentication_responseObject

Returns the value of attribute consumer_authentication_response.



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

def consumer_authentication_response
  @consumer_authentication_response
end

#customerObject

Returns the value of attribute customer.



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

def customer
  @customer
end

#electronic_verification_resultsObject

Returns the value of attribute electronic_verification_results.



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

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.



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

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.



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

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.



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

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**.



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

def master_card_service_reply_code
  @master_card_service_reply_code
end

#merchant_adviceObject

Returns the value of attribute merchant_advice.



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

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



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

def merchant_number
  @merchant_number
end

#nameObject

Name of the Processor.



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

def name
  @name
end

#network_transaction_idObject

Same value as ‘processorInformation.transactionId`



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

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.



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

def 
  @payment_account_reference_number
end

#payment_urlObject

Direct the customer to this URL to complete the payment.



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

def payment_url
  @payment_url
end

#public_keyObject

Returns the value of attribute public_key.



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

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



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

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)



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

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.



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

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**.



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

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.



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

def retrieval_reference_number
  @retrieval_reference_number
end

#routingObject

Returns the value of attribute routing.



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

def routing
  @routing
end

#settlement_dateObject

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



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

def settlement_date
  @settlement_date
end

#signatureObject

Returns the value of attribute signature.



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

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.



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

def system_trace_audit_number
  @system_trace_audit_number
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



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

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.



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

def transaction_integrity_code
  @transaction_integrity_code
end

Class Method Details

.attribute_mapObject

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



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

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'
  }
end

.json_mapObject

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



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

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'
  }
end

.swagger_typesObject

Attribute type mapping.



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

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'
  }
end

Instance Method Details

#==(o) ⇒ Object

Checks equality by comparing each attribute.

Parameters:

  • Object (Object)

    to be compared



511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
# File 'lib/cybersource_rest_client/models/pts_v2_payments_post201_response_processor_information.rb', line 511

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
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



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

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



651
652
653
654
655
656
657
658
659
660
661
662
663
# File 'lib/cybersource_rest_client/models/pts_v2_payments_post201_response_processor_information.rb', line 651

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



564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
# File 'lib/cybersource_rest_client/models/pts_v2_payments_post201_response_processor_information.rb', line 564

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


551
552
553
# File 'lib/cybersource_rest_client/models/pts_v2_payments_post201_response_processor_information.rb', line 551

def eql?(o)
  self == o
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



557
558
559
# File 'lib/cybersource_rest_client/models/pts_v2_payments_post201_response_processor_information.rb', line 557

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].hash
end

#list_invalid_propertiesObject

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

Returns:

  • Array for valid properties with the reasons



366
367
368
369
# File 'lib/cybersource_rest_client/models/pts_v2_payments_post201_response_processor_information.rb', line 366

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



631
632
633
# File 'lib/cybersource_rest_client/models/pts_v2_payments_post201_response_processor_information.rb', line 631

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



637
638
639
640
641
642
643
644
645
# File 'lib/cybersource_rest_client/models/pts_v2_payments_post201_response_processor_information.rb', line 637

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



625
626
627
# File 'lib/cybersource_rest_client/models/pts_v2_payments_post201_response_processor_information.rb', line 625

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



373
374
375
# File 'lib/cybersource_rest_client/models/pts_v2_payments_post201_response_processor_information.rb', line 373

def valid?
  true
end