cybersource_rest_client 0.0.57 → 0.0.58

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4a683a5c7392bdf85074a522eee216c14d79fd35fe32280dce2fac36e82478b0
4
- data.tar.gz: f8b335f0a758f528e7c1ba0dd577eaf4dc037ebc54857fc119863735e7fbdeff
3
+ metadata.gz: a5a2dd3eeb8174b4b21c86792d79b0b2ba216dd8fd8ae55380b137e9414f7b0e
4
+ data.tar.gz: e187ffc57a275676e963f6a12f89ba098a885144de130efdd0c4dba05170e850
5
5
  SHA512:
6
- metadata.gz: de2a006815dba5e37637d4542f80a4c476605e53f58a47ae75eda87999635cb23a0ca28ab857927f218a58f956efb3fc29d92260852170dc2daf7151e1683d83
7
- data.tar.gz: 4ac65e83d52b0f67a2471e07d637c6ab2687f4100caa450bdb616e4a361d6b9ecd9f476109d6d793e2c9b236f37e113bc91fecd19774123618b9d51d1e10c01b
6
+ metadata.gz: '0083818a864ee8e6849ff7c0d7b098557a5ffefcdc2e88eb56ab034b5192610f93049dfcb39119de0024eab90534fd25a041c58e6b6bba2629310933443d1417'
7
+ data.tar.gz: 1b1542c89f6f5543001a9fdb08de8e7a4fee12f14b52c8fb30863611bd0d86e987aa9455938378615931890f8174c97fef575f9c44e028a935ece9a685039c3a
@@ -25,7 +25,7 @@ public
25
25
  elsif authenticationType == Constants::AUTH_TYPE_OAUTH
26
26
  token = GenerateOAuthToken.new.getToken(merchantconfig_obj, gmtdatetime)
27
27
  else
28
- raise StandardError.ner(Constants::ERROR_PREFIX + Constants::AUTH_ERROR)
28
+ raise StandardError.new(Constants::ERROR_PREFIX + Constants::AUTH_ERROR)
29
29
  end
30
30
  rescue StandardError => err
31
31
  @log_obj.logger.error(ExceptionHandler.new.new_api_exception err)
@@ -51,6 +51,10 @@ module CyberSource
51
51
  if @api_client.config.client_side_validation && batch_id.nil?
52
52
  fail ArgumentError, "Missing the required parameter 'batch_id' when calling BatchesApi.get_batch_report"
53
53
  end
54
+ #if @api_client.config.client_side_validation && batch_id !~ Regexp.new(/^[0-9]*$/)
55
+ #fail ArgumentError, "invalid value for 'batch_id' when calling BatchesApi.get_batch_report, must conform to the pattern /^[0-9]*$/."
56
+ #end
57
+
54
58
  # resource path
55
59
  local_var_path = 'accountupdater/v1/batches/{batchId}/report'.sub('{' + 'batchId' + '}', batch_id.to_s)
56
60
 
@@ -122,6 +126,10 @@ module CyberSource
122
126
  if @api_client.config.client_side_validation && batch_id.nil?
123
127
  fail ArgumentError, "Missing the required parameter 'batch_id' when calling BatchesApi.get_batch_status"
124
128
  end
129
+ #if @api_client.config.client_side_validation && batch_id !~ Regexp.new(/^[0-9]*$/)
130
+ #fail ArgumentError, "invalid value for 'batch_id' when calling BatchesApi.get_batch_status, must conform to the pattern /^[0-9]*$/."
131
+ #end
132
+
125
133
  # resource path
126
134
  local_var_path = 'accountupdater/v1/batches/{batchId}/status'.sub('{' + 'batchId' + '}', batch_id.to_s)
127
135
 
@@ -24,22 +24,24 @@ module CyberSource
24
24
  # | | | | | --- | --- | --- | |**Token**<br>A Token can represent your tokenized Customer, Payment Instrument or Instrument Identifier information.|&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;|**Payment Credentials**<br>Contains payment information such as the network token, generated cryptogram for Visa & MasterCard or dynamic CVV for Amex in a JSON Web Encryption (JWE) response.<br>Your system can use this API to retrieve the Payment Credentials for an existing Customer, Payment Instrument or Instrument Identifier.
25
25
  #
26
26
  # @param token_id The Id of a token representing a Customer, Payment Instrument or Instrument Identifier.
27
+ # @param post_payment_credentials_request
27
28
  # @param [Hash] opts the optional parameters
28
29
  # @option opts [String] :profile_id The Id of a profile containing user specific TMS configuration.
29
30
  # @return [String]
30
31
  #
31
- def post_token_payment_credentials(token_id, opts = {})
32
- data, status_code, headers = post_token_payment_credentials_with_http_info(token_id, opts)
32
+ def post_token_payment_credentials(token_id, post_payment_credentials_request, opts = {})
33
+ data, status_code, headers = post_token_payment_credentials_with_http_info(token_id, post_payment_credentials_request, opts)
33
34
  return data, status_code, headers
34
35
  end
35
36
 
36
37
  # Generate Payment Credentials for a TMS Token
37
38
  # | | | | | --- | --- | --- | |**Token**&lt;br&gt;A Token can represent your tokenized Customer, Payment Instrument or Instrument Identifier information.|&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;|**Payment Credentials**&lt;br&gt;Contains payment information such as the network token, generated cryptogram for Visa &amp; MasterCard or dynamic CVV for Amex in a JSON Web Encryption (JWE) response.&lt;br&gt;Your system can use this API to retrieve the Payment Credentials for an existing Customer, Payment Instrument or Instrument Identifier.
38
39
  # @param token_id The Id of a token representing a Customer, Payment Instrument or Instrument Identifier.
40
+ # @param post_payment_credentials_request
39
41
  # @param [Hash] opts the optional parameters
40
42
  # @option opts [String] :profile_id The Id of a profile containing user specific TMS configuration.
41
43
  # @return [Array<(String, Fixnum, Hash)>] String data, response status code and response headers
42
- def post_token_payment_credentials_with_http_info(token_id, opts = {})
44
+ def post_token_payment_credentials_with_http_info(token_id, post_payment_credentials_request, opts = {})
43
45
 
44
46
  if @api_client.config.debugging
45
47
  begin
@@ -53,6 +55,10 @@ module CyberSource
53
55
  if @api_client.config.client_side_validation && token_id.nil?
54
56
  fail ArgumentError, "Missing the required parameter 'token_id' when calling TokenApi.post_token_payment_credentials"
55
57
  end
58
+ # verify the required parameter 'post_payment_credentials_request' is set
59
+ if @api_client.config.client_side_validation && post_payment_credentials_request.nil?
60
+ fail ArgumentError, "Missing the required parameter 'post_payment_credentials_request' when calling TokenApi.post_token_payment_credentials"
61
+ end
56
62
  # resource path
57
63
  local_var_path = 'tms/v2/tokens/{tokenId}/payment-credentials'.sub('{' + 'tokenId' + '}', token_id.to_s)
58
64
 
@@ -71,11 +77,9 @@ module CyberSource
71
77
  form_params = {}
72
78
 
73
79
  # http body (model)
74
- if 'POST' == 'POST'
75
- post_body = '{}'
76
- else
77
- post_body = nil
78
- end
80
+ post_body = @api_client.object_to_http_body(post_payment_credentials_request)
81
+ sdk_tracker = SdkTracker.new
82
+ post_body = sdk_tracker.insert_developer_id_tracker(post_body, 'PostPaymentCredentialsRequest', @api_client.config.host)
79
83
  auth_names = []
80
84
  data, status_code, headers = @api_client.call_api(:POST, local_var_path,
81
85
  :header_params => header_params,
@@ -93,7 +93,7 @@ module CyberSource
93
93
  :'buyer_information' => :'Riskv1authenticationsBuyerInformation',
94
94
  :'device_information' => :'Riskv1authenticationsDeviceInformation',
95
95
  :'merchant_information' => :'Riskv1decisionsMerchantInformation',
96
- :'acquirer_information' => :'Ptsv2paymentsAcquirerInformation',
96
+ :'acquirer_information' => :'Riskv1decisionsAcquirerInformation',
97
97
  :'recurring_payment_information' => :'Ptsv2paymentsRecurringPaymentInformation',
98
98
  :'consumer_authentication_information' => :'Riskv1decisionsConsumerAuthenticationInformation',
99
99
  :'risk_information' => :'Riskv1authenticationsRiskInformation',
@@ -104,7 +104,7 @@ module CyberSource
104
104
  :'travel_information' => :'Riskv1decisionsTravelInformation',
105
105
  :'merchant_defined_information' => :'Array<Riskv1decisionsMerchantDefinedInformation>',
106
106
  :'merchant_information' => :'Riskv1decisionsMerchantInformation',
107
- :'acquirer_information' => :'Ptsv2paymentsAcquirerInformation',
107
+ :'acquirer_information' => :'Riskv1decisionsAcquirerInformation',
108
108
  :'recurring_payment_information' => :'Ptsv2paymentsRecurringPaymentInformation',
109
109
  :'consumer_authentication_information' => :'Riskv1decisionsConsumerAuthenticationInformation',
110
110
  :'watchlist_screening_information' => :'Ptsv2paymentsWatchlistScreeningInformation',
@@ -17,7 +17,7 @@ module CyberSource
17
17
  # Time of request in UTC. Format: `YYYY-MM-DDThh:mm:ssZ` **Example** `2016-08-11T22:47:57Z` equals August 11, 2016, at 22:47:57 (10:47:57 p.m.). The `T` separates the date and the time. The `Z` indicates UTC. Returned by Cybersource for all services.
18
18
  attr_accessor :submit_time_utc
19
19
 
20
- # The status of the invoice. Possible values: - NOTFOUND
20
+ # The status of the invoice. Possible values: - NOTFOUND
21
21
  attr_accessor :status
22
22
 
23
23
  # The reason of the status. Possible values: - MISSING_FIELD - INVALID_DATA - DUPLICATE_REQUEST - INVALID_MERCHANT_CONFIGURATION - PROCESSOR_UNAVAILABLE
@@ -0,0 +1,191 @@
1
+ =begin
2
+ #CyberSource Merged Spec
3
+
4
+ #All CyberSource API specs merged together. These are available at https://developer.cybersource.com/api/reference/api-reference.html
5
+
6
+ OpenAPI spec version: 0.0.1
7
+
8
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+ Swagger Codegen version: 2.2.3
10
+
11
+ =end
12
+
13
+ require 'date'
14
+
15
+ module CyberSource
16
+ class PostPaymentCredentialsRequest
17
+ # The type of payment credentials to be returned. By default, payment credentials include network token and cryptogram or dynamic CVV. If \"NETWORK_TOKEN\" is supplied then only network token will be returned and cryptogram or dynamic CVV will be excluded. Possible Values: - NETWORK_TOKEN
18
+ attr_accessor :payment_credential_type
19
+
20
+ # Attribute mapping from ruby-style variable name to JSON key.
21
+ def self.attribute_map
22
+ {
23
+ :'payment_credential_type' => :'paymentCredentialType'
24
+ }
25
+ end
26
+
27
+ # Attribute mapping from JSON key to ruby-style variable name.
28
+ def self.json_map
29
+ {
30
+ :'payment_credential_type' => :'payment_credential_type'
31
+ }
32
+ end
33
+
34
+ # Attribute type mapping.
35
+ def self.swagger_types
36
+ {
37
+ :'payment_credential_type' => :'String'
38
+ }
39
+ end
40
+
41
+ # Initializes the object
42
+ # @param [Hash] attributes Model attributes in the form of hash
43
+ def initialize(attributes = {})
44
+ return unless attributes.is_a?(Hash)
45
+
46
+ # convert string to symbol for hash key
47
+ attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }
48
+
49
+ if attributes.has_key?(:'paymentCredentialType')
50
+ self.payment_credential_type = attributes[:'paymentCredentialType']
51
+ end
52
+ end
53
+
54
+ # Show invalid properties with the reasons. Usually used together with valid?
55
+ # @return Array for valid properties with the reasons
56
+ def list_invalid_properties
57
+ invalid_properties = Array.new
58
+ invalid_properties
59
+ end
60
+
61
+ # Check to see if the all the properties in the model are valid
62
+ # @return true if the model is valid
63
+ def valid?
64
+ true
65
+ end
66
+
67
+ # Checks equality by comparing each attribute.
68
+ # @param [Object] Object to be compared
69
+ def ==(o)
70
+ return true if self.equal?(o)
71
+ self.class == o.class &&
72
+ payment_credential_type == o.payment_credential_type
73
+ end
74
+
75
+ # @see the `==` method
76
+ # @param [Object] Object to be compared
77
+ def eql?(o)
78
+ self == o
79
+ end
80
+
81
+ # Calculates hash code according to all attributes.
82
+ # @return [Fixnum] Hash code
83
+ def hash
84
+ [payment_credential_type].hash
85
+ end
86
+
87
+ # Builds the object from hash
88
+ # @param [Hash] attributes Model attributes in the form of hash
89
+ # @return [Object] Returns the model itself
90
+ def build_from_hash(attributes)
91
+ return nil unless attributes.is_a?(Hash)
92
+ self.class.swagger_types.each_pair do |key, type|
93
+ if type =~ /\AArray<(.*)>/i
94
+ # check to ensure the input is an array given that the the attribute
95
+ # is documented as an array but the input is not
96
+ if attributes[self.class.attribute_map[key]].is_a?(Array)
97
+ self.send("#{self.class.json_map[key]}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
98
+ end
99
+ elsif !attributes[self.class.attribute_map[key]].nil?
100
+ self.send("#{self.class.json_map[key]}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
101
+ end # or else data not found in attributes(hash), not an issue as the data can be optional
102
+ end
103
+
104
+ self
105
+ end
106
+
107
+ # Deserializes the data based on type
108
+ # @param string type Data type
109
+ # @param string value Value to be deserialized
110
+ # @return [Object] Deserialized data
111
+ def _deserialize(type, value)
112
+ case type.to_sym
113
+ when :DateTime
114
+ DateTime.parse(value)
115
+ when :Date
116
+ Date.parse(value)
117
+ when :String
118
+ value.to_s
119
+ when :Integer
120
+ value.to_i
121
+ when :Float
122
+ value.to_f
123
+ when :BOOLEAN
124
+ if value.to_s =~ /\A(true|t|yes|y|1)\z/i
125
+ true
126
+ else
127
+ false
128
+ end
129
+ when :Object
130
+ # generic object (usually a Hash), return directly
131
+ value
132
+ when /\AArray<(?<inner_type>.+)>\z/
133
+ inner_type = Regexp.last_match[:inner_type]
134
+ value.map { |v| _deserialize(inner_type, v) }
135
+ when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
136
+ k_type = Regexp.last_match[:k_type]
137
+ v_type = Regexp.last_match[:v_type]
138
+ {}.tap do |hash|
139
+ value.each do |k, v|
140
+ hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
141
+ end
142
+ end
143
+ else # model
144
+ temp_model = CyberSource.const_get(type).new
145
+ temp_model.build_from_hash(value)
146
+ end
147
+ end
148
+
149
+ # Returns the string representation of the object
150
+ # @return [String] String presentation of the object
151
+ def to_s
152
+ to_hash.to_s
153
+ end
154
+
155
+ # to_body is an alias to to_hash (backward compatibility)
156
+ # @return [Hash] Returns the object in the form of hash
157
+ def to_body
158
+ to_hash
159
+ end
160
+
161
+ # Returns the object in the form of hash
162
+ # @return [Hash] Returns the object in the form of hash
163
+ def to_hash
164
+ hash = {}
165
+ self.class.attribute_map.each_pair do |attr, param|
166
+ value = self.send(attr)
167
+ next if value.nil?
168
+ hash[param] = _to_hash(value)
169
+ end
170
+ hash
171
+ end
172
+
173
+ # Outputs non-array value in the form of hash
174
+ # For object, use to_hash. Otherwise, just return the value
175
+ # @param [Object] value Any valid value
176
+ # @return [Hash] Returns the value in the form of hash
177
+ def _to_hash(value)
178
+ if value.is_a?(Array)
179
+ value.compact.map { |v| _to_hash(v) }
180
+ elsif value.is_a?(Hash)
181
+ {}.tap do |hash|
182
+ value.each { |k, v| hash[k] = _to_hash(v) }
183
+ end
184
+ elsif value.respond_to? :to_hash
185
+ value.to_hash
186
+ else
187
+ value
188
+ end
189
+ end
190
+ end
191
+ end
@@ -22,7 +22,7 @@ module CyberSource
22
22
  # Time of request in UTC. Format: `YYYY-MM-DDThh:mm:ssZ` **Example** `2016-08-11T22:47:57Z` equals August 11, 2016, at 22:47:57 (10:47:57 p.m.). The `T` separates the date and the time. The `Z` indicates UTC. Returned by Cybersource for all services.
23
23
  attr_accessor :submit_time_utc
24
24
 
25
- # The status of the submitted transaction. Possible values: - PENDING
25
+ # The status of the submitted transaction. Possible values: - PENDING - TRANSMITTED (Only for Online Capture enabled merchants)
26
26
  attr_accessor :status
27
27
 
28
28
  # Reference number for the transaction. Depending on how your Cybersource account is configured, this value could either be provided in the API request or generated by CyberSource. The actual value used in the request to the processor is provided back to you by Cybersource in the response.
@@ -17,24 +17,30 @@ module CyberSource
17
17
  # Processor transaction ID. This value identifies the transaction on a host system. This value is supported only for Moneris. It contains this 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
18
18
  attr_accessor :transaction_id
19
19
 
20
+ # Network Transaction Identifier Applicable for online capture transactions only.
21
+ attr_accessor :network_transaction_id
22
+
20
23
  # Attribute mapping from ruby-style variable name to JSON key.
21
24
  def self.attribute_map
22
25
  {
23
- :'transaction_id' => :'transactionId'
26
+ :'transaction_id' => :'transactionId',
27
+ :'network_transaction_id' => :'networkTransactionId'
24
28
  }
25
29
  end
26
30
 
27
31
  # Attribute mapping from JSON key to ruby-style variable name.
28
32
  def self.json_map
29
33
  {
30
- :'transaction_id' => :'transaction_id'
34
+ :'transaction_id' => :'transaction_id',
35
+ :'network_transaction_id' => :'network_transaction_id'
31
36
  }
32
37
  end
33
38
 
34
39
  # Attribute type mapping.
35
40
  def self.swagger_types
36
41
  {
37
- :'transaction_id' => :'String'
42
+ :'transaction_id' => :'String',
43
+ :'network_transaction_id' => :'String'
38
44
  }
39
45
  end
40
46
 
@@ -49,6 +55,10 @@ module CyberSource
49
55
  if attributes.has_key?(:'transactionId')
50
56
  self.transaction_id = attributes[:'transactionId']
51
57
  end
58
+
59
+ if attributes.has_key?(:'networkTransactionId')
60
+ self.network_transaction_id = attributes[:'networkTransactionId']
61
+ end
52
62
  end
53
63
 
54
64
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -75,7 +85,8 @@ module CyberSource
75
85
  def ==(o)
76
86
  return true if self.equal?(o)
77
87
  self.class == o.class &&
78
- transaction_id == o.transaction_id
88
+ transaction_id == o.transaction_id &&
89
+ network_transaction_id == o.network_transaction_id
79
90
  end
80
91
 
81
92
  # @see the `==` method
@@ -87,7 +98,7 @@ module CyberSource
87
98
  # Calculates hash code according to all attributes.
88
99
  # @return [Fixnum] Hash code
89
100
  def hash
90
- [transaction_id].hash
101
+ [transaction_id, network_transaction_id].hash
91
102
  end
92
103
 
93
104
  # Builds the object from hash
@@ -14,7 +14,7 @@ require 'date'
14
14
 
15
15
  module CyberSource
16
16
  class PtsV2PaymentsPost201ResponseEmbeddedActionsCAPTURE
17
- # The status of the submitted transaction. Possible values: - PENDING
17
+ # The status of the submitted transaction. Possible values: - PENDING - TRANSMITTED (Only for Online Capture enabled merchants)
18
18
  attr_accessor :status
19
19
 
20
20
  # The reason of the status. Possible values: - MISSING_FIELD - INVALID_DATA - DUPLICATE_REQUEST - INVALID_MERCHANT_CONFIGURATION - EXCEEDS_AUTH_AMOUNT - AUTH_ALREADY_REVERSED - TRANSACTION_ALREADY_SETTLED - INVALID_AMOUNT - MISSING_AUTH - TRANSACTION_ALREADY_REVERSED_OR_SETTLED - NOT_SUPPORTED
@@ -26,13 +26,17 @@ module CyberSource
26
26
  # Username for the visa directory server that is created when your acquirer sets up your account. This ID might be the same as your merchant ID. the username can be 15 or 23 characters.
27
27
  attr_accessor :merchant_id
28
28
 
29
+ # Acquirer assigned merchant id. Check if your processor supports this field.
30
+ attr_accessor :acquirer_merchant_id
31
+
29
32
  # Attribute mapping from ruby-style variable name to JSON key.
30
33
  def self.attribute_map
31
34
  {
32
35
  :'acquirer_bin' => :'acquirerBin',
33
36
  :'country' => :'country',
34
37
  :'password' => :'password',
35
- :'merchant_id' => :'merchantId'
38
+ :'merchant_id' => :'merchantId',
39
+ :'acquirer_merchant_id' => :'acquirerMerchantId'
36
40
  }
37
41
  end
38
42
 
@@ -42,7 +46,8 @@ module CyberSource
42
46
  :'acquirer_bin' => :'acquirer_bin',
43
47
  :'country' => :'country',
44
48
  :'password' => :'password',
45
- :'merchant_id' => :'merchant_id'
49
+ :'merchant_id' => :'merchant_id',
50
+ :'acquirer_merchant_id' => :'acquirer_merchant_id'
46
51
  }
47
52
  end
48
53
 
@@ -52,7 +57,8 @@ module CyberSource
52
57
  :'acquirer_bin' => :'String',
53
58
  :'country' => :'String',
54
59
  :'password' => :'String',
55
- :'merchant_id' => :'String'
60
+ :'merchant_id' => :'String',
61
+ :'acquirer_merchant_id' => :'String'
56
62
  }
57
63
  end
58
64
 
@@ -79,6 +85,10 @@ module CyberSource
79
85
  if attributes.has_key?(:'merchantId')
80
86
  self.merchant_id = attributes[:'merchantId']
81
87
  end
88
+
89
+ if attributes.has_key?(:'acquirerMerchantId')
90
+ self.acquirer_merchant_id = attributes[:'acquirerMerchantId']
91
+ end
82
92
  end
83
93
 
84
94
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -118,6 +128,12 @@ module CyberSource
118
128
  @merchant_id = merchant_id
119
129
  end
120
130
 
131
+ # Custom attribute writer method with validation
132
+ # @param [Object] acquirer_merchant_id Value to be assigned
133
+ def acquirer_merchant_id=(acquirer_merchant_id)
134
+ @acquirer_merchant_id = acquirer_merchant_id
135
+ end
136
+
121
137
  # Checks equality by comparing each attribute.
122
138
  # @param [Object] Object to be compared
123
139
  def ==(o)
@@ -126,7 +142,8 @@ module CyberSource
126
142
  acquirer_bin == o.acquirer_bin &&
127
143
  country == o.country &&
128
144
  password == o.password &&
129
- merchant_id == o.merchant_id
145
+ merchant_id == o.merchant_id &&
146
+ acquirer_merchant_id == o.acquirer_merchant_id
130
147
  end
131
148
 
132
149
  # @see the `==` method
@@ -138,7 +155,7 @@ module CyberSource
138
155
  # Calculates hash code according to all attributes.
139
156
  # @return [Fixnum] Hash code
140
157
  def hash
141
- [acquirer_bin, country, password, merchant_id].hash
158
+ [acquirer_bin, country, password, merchant_id, acquirer_merchant_id].hash
142
159
  end
143
160
 
144
161
  # Builds the object from hash
@@ -16,29 +16,24 @@ module CyberSource
16
16
  class Riskv1authenticationresultsOrderInformation
17
17
  attr_accessor :amount_details
18
18
 
19
- attr_accessor :line_items
20
-
21
19
  # Attribute mapping from ruby-style variable name to JSON key.
22
20
  def self.attribute_map
23
21
  {
24
- :'amount_details' => :'amountDetails',
25
- :'line_items' => :'lineItems'
22
+ :'amount_details' => :'amountDetails'
26
23
  }
27
24
  end
28
25
 
29
26
  # Attribute mapping from JSON key to ruby-style variable name.
30
27
  def self.json_map
31
28
  {
32
- :'amount_details' => :'amount_details',
33
- :'line_items' => :'line_items'
29
+ :'amount_details' => :'amount_details'
34
30
  }
35
31
  end
36
32
 
37
33
  # Attribute type mapping.
38
34
  def self.swagger_types
39
35
  {
40
- :'amount_details' => :'Riskv1authenticationresultsOrderInformationAmountDetails',
41
- :'line_items' => :'Array<Riskv1authenticationresultsOrderInformationLineItems>'
36
+ :'amount_details' => :'Riskv1authenticationresultsOrderInformationAmountDetails'
42
37
  }
43
38
  end
44
39
 
@@ -53,12 +48,6 @@ module CyberSource
53
48
  if attributes.has_key?(:'amountDetails')
54
49
  self.amount_details = attributes[:'amountDetails']
55
50
  end
56
-
57
- if attributes.has_key?(:'lineItems')
58
- if (value = attributes[:'lineItems']).is_a?(Array)
59
- self.line_items = value
60
- end
61
- end
62
51
  end
63
52
 
64
53
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -79,8 +68,7 @@ module CyberSource
79
68
  def ==(o)
80
69
  return true if self.equal?(o)
81
70
  self.class == o.class &&
82
- amount_details == o.amount_details &&
83
- line_items == o.line_items
71
+ amount_details == o.amount_details
84
72
  end
85
73
 
86
74
  # @see the `==` method
@@ -92,7 +80,7 @@ module CyberSource
92
80
  # Calculates hash code according to all attributes.
93
81
  # @return [Fixnum] Hash code
94
82
  def hash
95
- [amount_details, line_items].hash
83
+ [amount_details].hash
96
84
  end
97
85
 
98
86
  # Builds the object from hash
@@ -13,40 +13,46 @@ Swagger Codegen version: 2.2.3
13
13
  require 'date'
14
14
 
15
15
  module CyberSource
16
- class Riskv1authenticationresultsOrderInformationLineItems
17
- # Per-item price of the product. This value for this field cannot be negative. You must include either this field or the request-level field `orderInformation.amountDetails.totalAmount` in your request. You can include a decimal point (.), but you cannot include any other special characters. The value is truncated to the correct number of decimal places. #### DCC with a Third-Party Provider Set this field to the converted amount that was returned by the DCC provider. You must include either the 1st line item in the order and this field, or the request-level field `orderInformation.amountDetails.totalAmount` in your request. #### FDMS South If you accept IDR or CLP currencies, see the entry for FDMS South in the [Merchant Descriptors Using the SCMP API Guide.] (https://apps.cybersource.com/library/documentation/dev_guides/Merchant_Descriptors_SCMP_API/html/) #### Tax Calculation Required field for U.S., Canadian, international and value added taxes. #### Zero Amount Authorizations If your processor supports zero amount authorizations, you can set this field to 0 for the authorization to check if the card is lost or stolen. #### Maximum Field Lengths For GPN and JCN Gateway: Decimal (10) All other processors: Decimal (15)
18
- attr_accessor :unit_price
16
+ class Riskv1decisionsAcquirerInformation
17
+ # Acquirer bank ID number that corresponds to a certificate that Cybersource already has.This ID has this format. 4XXXXX for Visa and 5XXXXX for Mastercard.
18
+ attr_accessor :acquirer_bin
19
19
 
20
- # Number of units for this order. Must be a non-negative integer. The default is `1`. For an authorization or capture transaction (`processingOptions.capture` is set to `true` or `false`), this field is required when `orderInformation.lineItems[].productCode` is not `default` or one of the other values related to shipping and/or handling. #### Tax Calculation Optional field for U.S., Canadian, international tax, and value added taxes.
21
- attr_accessor :quantity
20
+ # Issuers need to be aware of the Acquirer's Country Code when the Acquirer country differs from the Merchant country and the Acquirer is in the EEA (European Economic Area).
21
+ attr_accessor :country
22
22
 
23
- # Total tax to apply to the product. This value cannot be negative. The tax amount and the offer amount must be in the same currency. The tax amount field is additive. The following example uses a two-exponent currency such as USD: 1. You include each line item in your request. ..- 1st line item has amount=10.00, quantity=1, and taxAmount=0.80 ..- 2nd line item has amount=20.00, quantity=1, and taxAmount=1.60 2. The total amount authorized will be 32.40, not 30.00 with 2.40 of tax included. Optional field. #### Airlines processing Tax portion of the order amount. This value cannot exceed 99999999999999 (fourteen 9s). Format: English characters only. Optional request field for a line item. #### Tax Calculation Optional field for U.S., Canadian, international tax, and value added taxes. Note if you send this field in your tax request, the value in the field will override the tax engine
24
- attr_accessor :tax_amount
23
+ # Registered password for the Visa directory server.
24
+ attr_accessor :password
25
+
26
+ # Username for the visa directory server that is created when your acquirer sets up your account. This ID might be the same as your merchant ID. the username can be 15 or 23 characters.
27
+ attr_accessor :merchant_id
25
28
 
26
29
  # Attribute mapping from ruby-style variable name to JSON key.
27
30
  def self.attribute_map
28
31
  {
29
- :'unit_price' => :'unitPrice',
30
- :'quantity' => :'quantity',
31
- :'tax_amount' => :'taxAmount'
32
+ :'acquirer_bin' => :'acquirerBin',
33
+ :'country' => :'country',
34
+ :'password' => :'password',
35
+ :'merchant_id' => :'merchantId'
32
36
  }
33
37
  end
34
38
 
35
39
  # Attribute mapping from JSON key to ruby-style variable name.
36
40
  def self.json_map
37
41
  {
38
- :'unit_price' => :'unit_price',
39
- :'quantity' => :'quantity',
40
- :'tax_amount' => :'tax_amount'
42
+ :'acquirer_bin' => :'acquirer_bin',
43
+ :'country' => :'country',
44
+ :'password' => :'password',
45
+ :'merchant_id' => :'merchant_id'
41
46
  }
42
47
  end
43
48
 
44
49
  # Attribute type mapping.
45
50
  def self.swagger_types
46
51
  {
47
- :'unit_price' => :'String',
48
- :'quantity' => :'Integer',
49
- :'tax_amount' => :'String'
52
+ :'acquirer_bin' => :'String',
53
+ :'country' => :'String',
54
+ :'password' => :'String',
55
+ :'merchant_id' => :'String'
50
56
  }
51
57
  end
52
58
 
@@ -58,16 +64,20 @@ module CyberSource
58
64
  # convert string to symbol for hash key
59
65
  attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }
60
66
 
61
- if attributes.has_key?(:'unitPrice')
62
- self.unit_price = attributes[:'unitPrice']
67
+ if attributes.has_key?(:'acquirerBin')
68
+ self.acquirer_bin = attributes[:'acquirerBin']
69
+ end
70
+
71
+ if attributes.has_key?(:'country')
72
+ self.country = attributes[:'country']
63
73
  end
64
74
 
65
- if attributes.has_key?(:'quantity')
66
- self.quantity = attributes[:'quantity']
75
+ if attributes.has_key?(:'password')
76
+ self.password = attributes[:'password']
67
77
  end
68
78
 
69
- if attributes.has_key?(:'taxAmount')
70
- self.tax_amount = attributes[:'taxAmount']
79
+ if attributes.has_key?(:'merchantId')
80
+ self.merchant_id = attributes[:'merchantId']
71
81
  end
72
82
  end
73
83
 
@@ -75,40 +85,37 @@ module CyberSource
75
85
  # @return Array for valid properties with the reasons
76
86
  def list_invalid_properties
77
87
  invalid_properties = Array.new
78
- if @unit_price.nil?
79
- invalid_properties.push('invalid value for "unit_price", unit_price cannot be nil.')
80
- end
81
-
82
88
  invalid_properties
83
89
  end
84
90
 
85
91
  # Check to see if the all the properties in the model are valid
86
92
  # @return true if the model is valid
87
93
  def valid?
88
- return false if @unit_price.nil?
89
94
  true
90
95
  end
91
96
 
92
97
  # Custom attribute writer method with validation
93
- # @param [Object] unit_price Value to be assigned
94
- def unit_price=(unit_price)
95
- if unit_price.nil?
96
- fail ArgumentError, 'unit_price cannot be nil'
97
- end
98
+ # @param [Object] acquirer_bin Value to be assigned
99
+ def acquirer_bin=(acquirer_bin)
100
+ @acquirer_bin = acquirer_bin
101
+ end
98
102
 
99
- @unit_price = unit_price
103
+ # Custom attribute writer method with validation
104
+ # @param [Object] country Value to be assigned
105
+ def country=(country)
106
+ @country = country
100
107
  end
101
108
 
102
109
  # Custom attribute writer method with validation
103
- # @param [Object] quantity Value to be assigned
104
- def quantity=(quantity)
105
- @quantity = quantity
110
+ # @param [Object] password Value to be assigned
111
+ def password=(password)
112
+ @password = password
106
113
  end
107
114
 
108
115
  # Custom attribute writer method with validation
109
- # @param [Object] tax_amount Value to be assigned
110
- def tax_amount=(tax_amount)
111
- @tax_amount = tax_amount
116
+ # @param [Object] merchant_id Value to be assigned
117
+ def merchant_id=(merchant_id)
118
+ @merchant_id = merchant_id
112
119
  end
113
120
 
114
121
  # Checks equality by comparing each attribute.
@@ -116,9 +123,10 @@ module CyberSource
116
123
  def ==(o)
117
124
  return true if self.equal?(o)
118
125
  self.class == o.class &&
119
- unit_price == o.unit_price &&
120
- quantity == o.quantity &&
121
- tax_amount == o.tax_amount
126
+ acquirer_bin == o.acquirer_bin &&
127
+ country == o.country &&
128
+ password == o.password &&
129
+ merchant_id == o.merchant_id
122
130
  end
123
131
 
124
132
  # @see the `==` method
@@ -130,7 +138,7 @@ module CyberSource
130
138
  # Calculates hash code according to all attributes.
131
139
  # @return [Fixnum] Hash code
132
140
  def hash
133
- [unit_price, quantity, tax_amount].hash
141
+ [acquirer_bin, country, password, merchant_id].hash
134
142
  end
135
143
 
136
144
  # Builds the object from hash
@@ -14,12 +14,18 @@ require 'date'
14
14
 
15
15
  module CyberSource
16
16
  class Tmsv2customersEmbeddedDefaultPaymentInstrumentEmbeddedInstrumentIdentifierTokenizedCard
17
- # The network token card association brand Possible Values: - visa - mastercard
17
+ # The network token card association brand Possible Values: - visa - mastercard - americanexpress
18
18
  attr_accessor :type
19
19
 
20
20
  # State of the network token or network token provision Possible Values: - ACTIVE : Network token is active. - SUSPENDED : Network token is suspended. This state can change back to ACTIVE. - DELETED : This is a final state for a network token instance. - UNPROVISIONED : A previous network token provision was unsuccessful.
21
21
  attr_accessor :state
22
22
 
23
+ # Unique Identifier for the enrolled PAN. This Id is provided by the card association when a network token is provisioned successfully.
24
+ attr_accessor :enrollment_id
25
+
26
+ # Unique Identifier for the network token. This Id is provided by the card association when a network token is provisioned successfully.
27
+ attr_accessor :token_reference_id
28
+
23
29
  # Issuers state for the network token Possible Values: - INVALID_REQUEST : The network token provision request contained invalid data. - CARD_VERIFICATION_FAILED : The network token provision request contained data that could not be verified. - CARD_NOT_ELIGIBLE : Card can currently not be used with issuer for tokenization. - CARD_NOT_ALLOWED : Card can currently not be used with card association for tokenization. - DECLINED : Card can currently not be used with issuer for tokenization. - SERVICE_UNAVAILABLE : The network token service was unavailable or timed out. - SYSTEM_ERROR : An unexpected error occurred with network token service, check configuration.
24
30
  attr_accessor :reason
25
31
 
@@ -42,6 +48,8 @@ module CyberSource
42
48
  {
43
49
  :'type' => :'type',
44
50
  :'state' => :'state',
51
+ :'enrollment_id' => :'enrollmentId',
52
+ :'token_reference_id' => :'tokenReferenceId',
45
53
  :'reason' => :'reason',
46
54
  :'number' => :'number',
47
55
  :'expiration_month' => :'expirationMonth',
@@ -56,6 +64,8 @@ module CyberSource
56
64
  {
57
65
  :'type' => :'type',
58
66
  :'state' => :'state',
67
+ :'enrollment_id' => :'enrollment_id',
68
+ :'token_reference_id' => :'token_reference_id',
59
69
  :'reason' => :'reason',
60
70
  :'number' => :'number',
61
71
  :'expiration_month' => :'expiration_month',
@@ -70,6 +80,8 @@ module CyberSource
70
80
  {
71
81
  :'type' => :'String',
72
82
  :'state' => :'String',
83
+ :'enrollment_id' => :'String',
84
+ :'token_reference_id' => :'String',
73
85
  :'reason' => :'String',
74
86
  :'number' => :'String',
75
87
  :'expiration_month' => :'String',
@@ -95,6 +107,14 @@ module CyberSource
95
107
  self.state = attributes[:'state']
96
108
  end
97
109
 
110
+ if attributes.has_key?(:'enrollmentId')
111
+ self.enrollment_id = attributes[:'enrollmentId']
112
+ end
113
+
114
+ if attributes.has_key?(:'tokenReferenceId')
115
+ self.token_reference_id = attributes[:'tokenReferenceId']
116
+ end
117
+
98
118
  if attributes.has_key?(:'reason')
99
119
  self.reason = attributes[:'reason']
100
120
  end
@@ -152,6 +172,8 @@ module CyberSource
152
172
  self.class == o.class &&
153
173
  type == o.type &&
154
174
  state == o.state &&
175
+ enrollment_id == o.enrollment_id &&
176
+ token_reference_id == o.token_reference_id &&
155
177
  reason == o.reason &&
156
178
  number == o.number &&
157
179
  expiration_month == o.expiration_month &&
@@ -169,7 +191,7 @@ module CyberSource
169
191
  # Calculates hash code according to all attributes.
170
192
  # @return [Fixnum] Hash code
171
193
  def hash
172
- [type, state, reason, number, expiration_month, expiration_year, cryptogram, card].hash
194
+ [type, state, enrollment_id, token_reference_id, reason, number, expiration_month, expiration_year, cryptogram, card].hash
173
195
  end
174
196
 
175
197
  # Builds the object from hash
@@ -413,6 +413,7 @@ require 'cybersource_rest_client/models/post_customer_request'
413
413
  require 'cybersource_rest_client/models/post_customer_shipping_address_request'
414
414
  require 'cybersource_rest_client/models/post_instrument_identifier_enrollment_request'
415
415
  require 'cybersource_rest_client/models/post_instrument_identifier_request'
416
+ require 'cybersource_rest_client/models/post_payment_credentials_request'
416
417
  require 'cybersource_rest_client/models/post_payment_instrument_request'
417
418
  require 'cybersource_rest_client/models/post_registration_body'
418
419
  require 'cybersource_rest_client/models/predefined_subscription_request_bean'
@@ -929,7 +930,6 @@ require 'cybersource_rest_client/models/riskv1authenticationresults_consumer_aut
929
930
  require 'cybersource_rest_client/models/riskv1authenticationresults_device_information'
930
931
  require 'cybersource_rest_client/models/riskv1authenticationresults_order_information'
931
932
  require 'cybersource_rest_client/models/riskv1authenticationresults_order_information_amount_details'
932
- require 'cybersource_rest_client/models/riskv1authenticationresults_order_information_line_items'
933
933
  require 'cybersource_rest_client/models/riskv1authenticationresults_payment_information'
934
934
  require 'cybersource_rest_client/models/riskv1authenticationresults_payment_information_card'
935
935
  require 'cybersource_rest_client/models/riskv1authenticationresults_payment_information_fluid_data'
@@ -952,6 +952,7 @@ require 'cybersource_rest_client/models/riskv1authenticationsetups_payment_infor
952
952
  require 'cybersource_rest_client/models/riskv1authenticationsetups_payment_information_tokenized_card'
953
953
  require 'cybersource_rest_client/models/riskv1authenticationsetups_processing_information'
954
954
  require 'cybersource_rest_client/models/riskv1authenticationsetups_token_information'
955
+ require 'cybersource_rest_client/models/riskv1decisions_acquirer_information'
955
956
  require 'cybersource_rest_client/models/riskv1decisions_buyer_information'
956
957
  require 'cybersource_rest_client/models/riskv1decisions_client_reference_information'
957
958
  require 'cybersource_rest_client/models/riskv1decisions_client_reference_information_partner'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cybersource_rest_client
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.57
4
+ version: 0.0.58
5
5
  platform: ruby
6
6
  authors:
7
7
  - CyberSource
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-12-19 00:00:00.000000000 Z
11
+ date: 2024-02-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus
@@ -16,40 +16,40 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '1.0'
19
+ version: '1.4'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 1.0.1
22
+ version: 1.4.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
26
26
  requirements:
27
27
  - - "~>"
28
28
  - !ruby/object:Gem::Version
29
- version: '1.0'
29
+ version: '1.4'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 1.0.1
32
+ version: 1.4.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: json
35
35
  requirement: !ruby/object:Gem::Requirement
36
36
  requirements:
37
37
  - - "~>"
38
38
  - !ruby/object:Gem::Version
39
- version: '2.1'
39
+ version: '2.7'
40
40
  - - ">="
41
41
  - !ruby/object:Gem::Version
42
- version: 2.1.0
42
+ version: 2.7.0
43
43
  type: :runtime
44
44
  prerelease: false
45
45
  version_requirements: !ruby/object:Gem::Requirement
46
46
  requirements:
47
47
  - - "~>"
48
48
  - !ruby/object:Gem::Version
49
- version: '2.1'
49
+ version: '2.7'
50
50
  - - ">="
51
51
  - !ruby/object:Gem::Version
52
- version: 2.1.0
52
+ version: 2.7.0
53
53
  - !ruby/object:Gem::Dependency
54
54
  name: activesupport
55
55
  requirement: !ruby/object:Gem::Requirement
@@ -79,7 +79,7 @@ dependencies:
79
79
  version: '1.0'
80
80
  - - ">="
81
81
  - !ruby/object:Gem::Version
82
- version: 1.0.4
82
+ version: 1.0.5
83
83
  type: :runtime
84
84
  prerelease: false
85
85
  version_requirements: !ruby/object:Gem::Requirement
@@ -89,7 +89,7 @@ dependencies:
89
89
  version: '1.0'
90
90
  - - ">="
91
91
  - !ruby/object:Gem::Version
92
- version: 1.0.4
92
+ version: 1.0.5
93
93
  - !ruby/object:Gem::Dependency
94
94
  name: jwt
95
95
  requirement: !ruby/object:Gem::Requirement
@@ -110,20 +110,20 @@ dependencies:
110
110
  requirements:
111
111
  - - "~>"
112
112
  - !ruby/object:Gem::Version
113
- version: '2.3'
113
+ version: '2.8'
114
114
  - - ">="
115
115
  - !ruby/object:Gem::Version
116
- version: 2.3.0
116
+ version: 2.8.0
117
117
  type: :runtime
118
118
  prerelease: false
119
119
  version_requirements: !ruby/object:Gem::Requirement
120
120
  requirements:
121
121
  - - "~>"
122
122
  - !ruby/object:Gem::Version
123
- version: '2.3'
123
+ version: '2.8'
124
124
  - - ">="
125
125
  - !ruby/object:Gem::Version
126
- version: 2.3.0
126
+ version: 2.8.0
127
127
  - !ruby/object:Gem::Dependency
128
128
  name: time
129
129
  requirement: !ruby/object:Gem::Requirement
@@ -172,60 +172,60 @@ dependencies:
172
172
  requirements:
173
173
  - - "~>"
174
174
  - !ruby/object:Gem::Version
175
- version: '3.6'
175
+ version: '3.12'
176
176
  - - ">="
177
177
  - !ruby/object:Gem::Version
178
- version: 3.6.0
178
+ version: 3.12.0
179
179
  type: :development
180
180
  prerelease: false
181
181
  version_requirements: !ruby/object:Gem::Requirement
182
182
  requirements:
183
183
  - - "~>"
184
184
  - !ruby/object:Gem::Version
185
- version: '3.6'
185
+ version: '3.12'
186
186
  - - ">="
187
187
  - !ruby/object:Gem::Version
188
- version: 3.6.0
188
+ version: 3.12.0
189
189
  - !ruby/object:Gem::Dependency
190
190
  name: vcr
191
191
  requirement: !ruby/object:Gem::Requirement
192
192
  requirements:
193
193
  - - "~>"
194
194
  - !ruby/object:Gem::Version
195
- version: '3.0'
195
+ version: '5.0'
196
196
  - - ">="
197
197
  - !ruby/object:Gem::Version
198
- version: 3.0.1
198
+ version: 5.0.0
199
199
  type: :development
200
200
  prerelease: false
201
201
  version_requirements: !ruby/object:Gem::Requirement
202
202
  requirements:
203
203
  - - "~>"
204
204
  - !ruby/object:Gem::Version
205
- version: '3.0'
205
+ version: '5.0'
206
206
  - - ">="
207
207
  - !ruby/object:Gem::Version
208
- version: 3.0.1
208
+ version: 5.0.0
209
209
  - !ruby/object:Gem::Dependency
210
210
  name: webmock
211
211
  requirement: !ruby/object:Gem::Requirement
212
212
  requirements:
213
213
  - - "~>"
214
214
  - !ruby/object:Gem::Version
215
- version: '1.24'
215
+ version: '3.19'
216
216
  - - ">="
217
217
  - !ruby/object:Gem::Version
218
- version: 1.24.3
218
+ version: 3.19.0
219
219
  type: :development
220
220
  prerelease: false
221
221
  version_requirements: !ruby/object:Gem::Requirement
222
222
  requirements:
223
223
  - - "~>"
224
224
  - !ruby/object:Gem::Version
225
- version: '1.24'
225
+ version: '3.19'
226
226
  - - ">="
227
227
  - !ruby/object:Gem::Version
228
- version: 1.24.3
228
+ version: 3.19.0
229
229
  - !ruby/object:Gem::Dependency
230
230
  name: autotest
231
231
  requirement: !ruby/object:Gem::Requirement
@@ -771,6 +771,7 @@ files:
771
771
  - lib/cybersource_rest_client/models/post_customer_shipping_address_request.rb
772
772
  - lib/cybersource_rest_client/models/post_instrument_identifier_enrollment_request.rb
773
773
  - lib/cybersource_rest_client/models/post_instrument_identifier_request.rb
774
+ - lib/cybersource_rest_client/models/post_payment_credentials_request.rb
774
775
  - lib/cybersource_rest_client/models/post_payment_instrument_request.rb
775
776
  - lib/cybersource_rest_client/models/post_registration_body.rb
776
777
  - lib/cybersource_rest_client/models/predefined_subscription_request_bean.rb
@@ -1288,7 +1289,6 @@ files:
1288
1289
  - lib/cybersource_rest_client/models/riskv1authenticationresults_device_information.rb
1289
1290
  - lib/cybersource_rest_client/models/riskv1authenticationresults_order_information.rb
1290
1291
  - lib/cybersource_rest_client/models/riskv1authenticationresults_order_information_amount_details.rb
1291
- - lib/cybersource_rest_client/models/riskv1authenticationresults_order_information_line_items.rb
1292
1292
  - lib/cybersource_rest_client/models/riskv1authenticationresults_payment_information.rb
1293
1293
  - lib/cybersource_rest_client/models/riskv1authenticationresults_payment_information_card.rb
1294
1294
  - lib/cybersource_rest_client/models/riskv1authenticationresults_payment_information_fluid_data.rb
@@ -1311,6 +1311,7 @@ files:
1311
1311
  - lib/cybersource_rest_client/models/riskv1authenticationsetups_payment_information_tokenized_card.rb
1312
1312
  - lib/cybersource_rest_client/models/riskv1authenticationsetups_processing_information.rb
1313
1313
  - lib/cybersource_rest_client/models/riskv1authenticationsetups_token_information.rb
1314
+ - lib/cybersource_rest_client/models/riskv1decisions_acquirer_information.rb
1314
1315
  - lib/cybersource_rest_client/models/riskv1decisions_buyer_information.rb
1315
1316
  - lib/cybersource_rest_client/models/riskv1decisions_client_reference_information.rb
1316
1317
  - lib/cybersource_rest_client/models/riskv1decisions_client_reference_information_partner.rb