Skip to content

Commit ed8bdda

Browse files
committed
+ Fixing issue with PaymentType.Method
1 parent 258df1d commit ed8bdda

File tree

23 files changed

+8
-2055
lines changed

23 files changed

+8
-2055
lines changed

docs/SearchTransactionsApi.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ No authorization required
5656

5757

5858
# **get_search**
59-
> TssV2TransactionsPost201Response1 get_search(search_id)
59+
> TssV2TransactionsPost201Response get_search(search_id)
6060
6161
Get Search results
6262

@@ -89,7 +89,7 @@ Name | Type | Description | Notes
8989

9090
### Return type
9191

92-
[**TssV2TransactionsPost201Response1**](TssV2TransactionsPost201Response1.md)
92+
[**TssV2TransactionsPost201Response**](TssV2TransactionsPost201Response.md)
9393

9494
### Authorization
9595

docs/TssV2TransactionsPost201Response1.md

Lines changed: 0 additions & 21 deletions
This file was deleted.

docs/TssV2TransactionsPost201Response1Embedded.md

Lines changed: 0 additions & 8 deletions
This file was deleted.

docs/TssV2TransactionsPost201Response1EmbeddedPaymentInformation.md

Lines changed: 0 additions & 10 deletions
This file was deleted.

docs/TssV2TransactionsPost201Response1EmbeddedPaymentInformationPaymentType.md

Lines changed: 0 additions & 9 deletions
This file was deleted.

docs/TssV2TransactionsPost201Response1EmbeddedPaymentInformationPaymentTypeMethod.md

Lines changed: 0 additions & 11 deletions
This file was deleted.

docs/TssV2TransactionsPost201Response1EmbeddedTransactionSummaries.md

Lines changed: 0 additions & 25 deletions
This file was deleted.

generator/cybersource-rest-spec.json

Lines changed: 2 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -27571,25 +27571,8 @@
2757127571
"description": "A Payment Type is an agreed means for a payee to receive legal tender from a payer. The way one pays for a commercial financial transaction. Examples: Card, Bank Transfer, Digital, Direct Debit.\n"
2757227572
},
2757327573
"method": {
27574-
"type": "object",
27575-
"properties": {
27576-
"name": {
27577-
"type": "string",
27578-
"description": "A Payment Type is enabled through a Method. Examples: Visa, Master Card, ApplePay, iDeal\n"
27579-
},
27580-
"operator": {
27581-
"type": "string",
27582-
"description": "An operator of the Payment Type Method. Examples: Visa, PayPal, Google, Apple\n"
27583-
},
27584-
"schemeName": {
27585-
"type": "string",
27586-
"description": "A Payment Scheme is a formal, commercial relationship amongst payment ecosystem players (banks and merchants, typically, extended to include merchants payment service providers, banks processors, etc.), whereby the participants agree to an organizational, legal, and operational framework necessary for the functioning of the services these entities provide. Examples: Visa, Master Card, ApplePay, iDeal\n"
27587-
},
27588-
"schemeOperator": {
27589-
"type": "string",
27590-
"description": "Operator of the Scheme. Examples European Payment Council, Visa, Currence Ideal B.V\n"
27591-
}
27592-
}
27574+
"type": "string",
27575+
"description": "A Payment Type is enabled through a Method. Examples: Visa, Master Card, ApplePay, iDeal"
2759327576
}
2759427577
}
2759527578
},

lib/cybersource_rest_client.rb

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -429,12 +429,6 @@
429429
require 'cybersource_rest_client/models/tss_v2_transactions_get200_response_risk_information_score'
430430
require 'cybersource_rest_client/models/tss_v2_transactions_get200_response_sender_information'
431431
require 'cybersource_rest_client/models/tss_v2_transactions_post201_response'
432-
require 'cybersource_rest_client/models/tss_v2_transactions_post201_response_1'
433-
require 'cybersource_rest_client/models/tss_v2_transactions_post201_response_1__embedded'
434-
require 'cybersource_rest_client/models/tss_v2_transactions_post201_response_1__embedded_payment_information'
435-
require 'cybersource_rest_client/models/tss_v2_transactions_post201_response_1__embedded_payment_information_payment_type'
436-
require 'cybersource_rest_client/models/tss_v2_transactions_post201_response_1__embedded_payment_information_payment_type_method'
437-
require 'cybersource_rest_client/models/tss_v2_transactions_post201_response_1__embedded_transaction_summaries'
438432
require 'cybersource_rest_client/models/tss_v2_transactions_post201_response__embedded'
439433
require 'cybersource_rest_client/models/tss_v2_transactions_post201_response__embedded_buyer_information'
440434
require 'cybersource_rest_client/models/tss_v2_transactions_post201_response__embedded_client_reference_information'

lib/cybersource_rest_client/api/search_transactions_api.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ def create_search_with_http_info(create_search_request, opts = {})
8989
# Include the Search ID in the GET request to retrieve the search results.
9090
# @param search_id Search ID.
9191
# @param [Hash] opts the optional parameters
92-
# @return [TssV2TransactionsPost201Response1]
92+
# @return [TssV2TransactionsPost201Response]
9393
def get_search(search_id, opts = {})
9494
data, status_code, headers = get_search_with_http_info(search_id, opts)
9595
return data, status_code, headers
@@ -99,7 +99,7 @@ def get_search(search_id, opts = {})
9999
# Include the Search ID in the GET request to retrieve the search results.
100100
# @param search_id Search ID.
101101
# @param [Hash] opts the optional parameters
102-
# @return [Array<(TssV2TransactionsPost201Response1, Fixnum, Hash)>] TssV2TransactionsPost201Response1 data, response status code and response headers
102+
# @return [Array<(TssV2TransactionsPost201Response, Fixnum, Hash)>] TssV2TransactionsPost201Response data, response status code and response headers
103103
def get_search_with_http_info(search_id, opts = {})
104104

105105
if @api_client.config.debugging
@@ -139,7 +139,7 @@ def get_search_with_http_info(search_id, opts = {})
139139
:form_params => form_params,
140140
:body => post_body,
141141
:auth_names => auth_names,
142-
:return_type => 'TssV2TransactionsPost201Response1')
142+
:return_type => 'TssV2TransactionsPost201Response')
143143
if @api_client.config.debugging
144144
begin
145145
raise

0 commit comments

Comments
 (0)