Skip to content

Commit d069f99

Browse files
committed
+ Changes to SDK
1 parent 4de882a commit d069f99

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

docs/InstrumentIdentifierApi.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Method | HTTP request | Description
66
------------- | ------------- | -------------
77
[**create_instrument_identifier**](InstrumentIdentifierApi.md#create_instrument_identifier) | **POST** /tms/v1/instrumentidentifiers | Create an Instrument Identifier
88
[**delete_instrument_identifier**](InstrumentIdentifierApi.md#delete_instrument_identifier) | **DELETE** /tms/v1/instrumentidentifiers/{tokenId} | Delete an Instrument Identifier
9-
[**get_all_payment_instruments**](InstrumentIdentifierApi.md#get_all_payment_instruments) | **GET** /tms/v1/instrumentidentifiers/{tokenId}/paymentinstruments | Retrieve all Payment Instruments associated with an Instrument Identifier
9+
[**get_all_payment_instruments**](InstrumentIdentifierApi.md#get_all_payment_instruments) | **GET** /tms/v1/instrumentidentifiers/{tokenId}/paymentinstruments | Retrieve all Payment Instruments
1010
[**get_instrument_identifier**](InstrumentIdentifierApi.md#get_instrument_identifier) | **GET** /tms/v1/instrumentidentifiers/{tokenId} | Retrieve an Instrument Identifier
1111
[**update_instrument_identifier**](InstrumentIdentifierApi.md#update_instrument_identifier) | **PATCH** /tms/v1/instrumentidentifiers/{tokenId} | Update a Instrument Identifier
1212

@@ -109,7 +109,7 @@ No authorization required
109109
# **get_all_payment_instruments**
110110
> TmsV1InstrumentIdentifiersPaymentInstrumentsGet200Response get_all_payment_instruments(profile_id, token_id, opts)
111111
112-
Retrieve all Payment Instruments associated with an Instrument Identifier
112+
Retrieve all Payment Instruments
113113

114114
### Example
115115
```ruby
@@ -128,7 +128,7 @@ opts = {
128128
}
129129

130130
begin
131-
#Retrieve all Payment Instruments associated with an Instrument Identifier
131+
#Retrieve all Payment Instruments
132132
result = api_instance.get_all_payment_instruments(profile_id, token_id, opts)
133133
p result
134134
rescue CyberSource::ApiError => e

generator/cybersource-rest-spec.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23100,7 +23100,7 @@
2310023100
},
2310123101
"/tms/v1/instrumentidentifiers/{tokenId}/paymentinstruments": {
2310223102
"get": {
23103-
"summary": "Retrieve all Payment Instruments associated with an Instrument Identifier",
23103+
"summary": "Retrieve all Payment Instruments",
2310423104
"parameters": [
2310523105
{
2310623106
"name": "profile-id",

lib/cybersource_rest_client/api/instrument_identifier_api.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ def delete_instrument_identifier_with_http_info(profile_id, token_id, opts = {})
183183
end
184184
return data, status_code, headers
185185
end
186-
# Retrieve all Payment Instruments associated with an Instrument Identifier
186+
# Retrieve all Payment Instruments
187187
# @param profile_id The id of a profile containing user specific TMS configuration.
188188
# @param token_id The TokenId of an Instrument Identifier.
189189
# @param [Hash] opts the optional parameters
@@ -195,7 +195,7 @@ def get_all_payment_instruments(profile_id, token_id, opts = {})
195195
return data, status_code, headers
196196
end
197197

198-
# Retrieve all Payment Instruments associated with an Instrument Identifier
198+
# Retrieve all Payment Instruments
199199
# @param profile_id The id of a profile containing user specific TMS configuration.
200200
# @param token_id The TokenId of an Instrument Identifier.
201201
# @param [Hash] opts the optional parameters

spec/api/instrument_identifier_api_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
end
5858

5959
# unit tests for get_all_payment_instruments
60-
# Retrieve all Payment Instruments associated with an Instrument Identifier
60+
# Retrieve all Payment Instruments
6161
# @param profile_id The id of a profile containing user specific TMS configuration.
6262
# @param token_id The TokenId of an Instrument Identifier.
6363
# @param [Hash] opts the optional parameters

0 commit comments

Comments
 (0)