Skip to content

Commit d020221

Browse files
authored
Merge pull request #107 from CyberSource/master
Merging changes
2 parents dc44955 + e946da4 commit d020221

File tree

161 files changed

+2452
-751
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

161 files changed

+2452
-751
lines changed

Api/CustomerPaymentInstrumentApi.cs

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,8 @@ public interface ICustomerPaymentInstrumentApi : IApiAccessor
8585
/// <param name="profileId">The id of a profile containing user specific TMS configuration. (optional)</param>
8686
/// <param name="offset">Starting record in zero-based dataset that should be returned as the first object in the array. Default is 0. (optional, default to 0)</param>
8787
/// <param name="limit">The maximum number that can be returned in the array starting from the offset record in zero-based dataset. Default is 20, maximum is 100. (optional, default to 20)</param>
88-
/// <returns>PaymentInstrumentListForCustomer</returns>
89-
PaymentInstrumentListForCustomer GetCustomerPaymentInstrumentsList (string customerTokenId, string profileId = null, long? offset = null, long? limit = null);
88+
/// <returns>PaymentInstrumentList</returns>
89+
PaymentInstrumentList GetCustomerPaymentInstrumentsList (string customerTokenId, string profileId = null, long? offset = null, long? limit = null);
9090

9191
/// <summary>
9292
/// List Payment Instruments for a Customer
@@ -99,8 +99,8 @@ public interface ICustomerPaymentInstrumentApi : IApiAccessor
9999
/// <param name="profileId">The id of a profile containing user specific TMS configuration. (optional)</param>
100100
/// <param name="offset">Starting record in zero-based dataset that should be returned as the first object in the array. Default is 0. (optional, default to 0)</param>
101101
/// <param name="limit">The maximum number that can be returned in the array starting from the offset record in zero-based dataset. Default is 20, maximum is 100. (optional, default to 20)</param>
102-
/// <returns>ApiResponse of PaymentInstrumentListForCustomer</returns>
103-
ApiResponse<PaymentInstrumentListForCustomer> GetCustomerPaymentInstrumentsListWithHttpInfo (string customerTokenId, string profileId = null, long? offset = null, long? limit = null);
102+
/// <returns>ApiResponse of PaymentInstrumentList</returns>
103+
ApiResponse<PaymentInstrumentList> GetCustomerPaymentInstrumentsListWithHttpInfo (string customerTokenId, string profileId = null, long? offset = null, long? limit = null);
104104
/// <summary>
105105
/// Update a Customer Payment Instrument
106106
/// </summary>
@@ -218,8 +218,8 @@ public interface ICustomerPaymentInstrumentApi : IApiAccessor
218218
/// <param name="profileId">The id of a profile containing user specific TMS configuration. (optional)</param>
219219
/// <param name="offset">Starting record in zero-based dataset that should be returned as the first object in the array. Default is 0. (optional, default to 0)</param>
220220
/// <param name="limit">The maximum number that can be returned in the array starting from the offset record in zero-based dataset. Default is 20, maximum is 100. (optional, default to 20)</param>
221-
/// <returns>Task of PaymentInstrumentListForCustomer</returns>
222-
System.Threading.Tasks.Task<PaymentInstrumentListForCustomer> GetCustomerPaymentInstrumentsListAsync (string customerTokenId, string profileId = null, long? offset = null, long? limit = null);
221+
/// <returns>Task of PaymentInstrumentList</returns>
222+
System.Threading.Tasks.Task<PaymentInstrumentList> GetCustomerPaymentInstrumentsListAsync (string customerTokenId, string profileId = null, long? offset = null, long? limit = null);
223223

224224
/// <summary>
225225
/// List Payment Instruments for a Customer
@@ -232,8 +232,8 @@ public interface ICustomerPaymentInstrumentApi : IApiAccessor
232232
/// <param name="profileId">The id of a profile containing user specific TMS configuration. (optional)</param>
233233
/// <param name="offset">Starting record in zero-based dataset that should be returned as the first object in the array. Default is 0. (optional, default to 0)</param>
234234
/// <param name="limit">The maximum number that can be returned in the array starting from the offset record in zero-based dataset. Default is 20, maximum is 100. (optional, default to 20)</param>
235-
/// <returns>Task of ApiResponse (PaymentInstrumentListForCustomer)</returns>
236-
System.Threading.Tasks.Task<ApiResponse<PaymentInstrumentListForCustomer>> GetCustomerPaymentInstrumentsListAsyncWithHttpInfo (string customerTokenId, string profileId = null, long? offset = null, long? limit = null);
235+
/// <returns>Task of ApiResponse (PaymentInstrumentList)</returns>
236+
System.Threading.Tasks.Task<ApiResponse<PaymentInstrumentList>> GetCustomerPaymentInstrumentsListAsyncWithHttpInfo (string customerTokenId, string profileId = null, long? offset = null, long? limit = null);
237237
/// <summary>
238238
/// Update a Customer Payment Instrument
239239
/// </summary>
@@ -708,10 +708,10 @@ public async System.Threading.Tasks.Task<ApiResponse<Tmsv2customersEmbeddedDefau
708708
/// <param name="profileId">The id of a profile containing user specific TMS configuration. (optional)</param>
709709
/// <param name="offset">Starting record in zero-based dataset that should be returned as the first object in the array. Default is 0. (optional, default to 0)</param>
710710
/// <param name="limit">The maximum number that can be returned in the array starting from the offset record in zero-based dataset. Default is 20, maximum is 100. (optional, default to 20)</param>
711-
/// <returns>PaymentInstrumentListForCustomer</returns>
712-
public PaymentInstrumentListForCustomer GetCustomerPaymentInstrumentsList (string customerTokenId, string profileId = null, long? offset = null, long? limit = null)
711+
/// <returns>PaymentInstrumentList</returns>
712+
public PaymentInstrumentList GetCustomerPaymentInstrumentsList (string customerTokenId, string profileId = null, long? offset = null, long? limit = null)
713713
{
714-
ApiResponse<PaymentInstrumentListForCustomer> localVarResponse = GetCustomerPaymentInstrumentsListWithHttpInfo(customerTokenId, profileId, offset, limit);
714+
ApiResponse<PaymentInstrumentList> localVarResponse = GetCustomerPaymentInstrumentsListWithHttpInfo(customerTokenId, profileId, offset, limit);
715715
return localVarResponse.Data;
716716
}
717717

@@ -723,8 +723,8 @@ public PaymentInstrumentListForCustomer GetCustomerPaymentInstrumentsList (strin
723723
/// <param name="profileId">The id of a profile containing user specific TMS configuration. (optional)</param>
724724
/// <param name="offset">Starting record in zero-based dataset that should be returned as the first object in the array. Default is 0. (optional, default to 0)</param>
725725
/// <param name="limit">The maximum number that can be returned in the array starting from the offset record in zero-based dataset. Default is 20, maximum is 100. (optional, default to 20)</param>
726-
/// <returns>ApiResponse of PaymentInstrumentListForCustomer</returns>
727-
public ApiResponse< PaymentInstrumentListForCustomer > GetCustomerPaymentInstrumentsListWithHttpInfo (string customerTokenId, string profileId = null, long? offset = null, long? limit = null)
726+
/// <returns>ApiResponse of PaymentInstrumentList</returns>
727+
public ApiResponse< PaymentInstrumentList > GetCustomerPaymentInstrumentsListWithHttpInfo (string customerTokenId, string profileId = null, long? offset = null, long? limit = null)
728728
{
729729
// verify the required parameter 'customerTokenId' is set
730730
if (customerTokenId == null)
@@ -771,9 +771,9 @@ public ApiResponse< PaymentInstrumentListForCustomer > GetCustomerPaymentInstrum
771771
if (exception != null) throw exception;
772772
}
773773

774-
return new ApiResponse<PaymentInstrumentListForCustomer>(localVarStatusCode,
774+
return new ApiResponse<PaymentInstrumentList>(localVarStatusCode,
775775
localVarResponse.Headers.ToDictionary(x => x.Name, x => x.Value.ToString()),
776-
(PaymentInstrumentListForCustomer) Configuration.ApiClient.Deserialize(localVarResponse, typeof(PaymentInstrumentListForCustomer))); // Return statement
776+
(PaymentInstrumentList) Configuration.ApiClient.Deserialize(localVarResponse, typeof(PaymentInstrumentList))); // Return statement
777777
}
778778

779779
/// <summary>
@@ -784,10 +784,10 @@ public ApiResponse< PaymentInstrumentListForCustomer > GetCustomerPaymentInstrum
784784
/// <param name="profileId">The id of a profile containing user specific TMS configuration. (optional)</param>
785785
/// <param name="offset">Starting record in zero-based dataset that should be returned as the first object in the array. Default is 0. (optional, default to 0)</param>
786786
/// <param name="limit">The maximum number that can be returned in the array starting from the offset record in zero-based dataset. Default is 20, maximum is 100. (optional, default to 20)</param>
787-
/// <returns>Task of PaymentInstrumentListForCustomer</returns>
788-
public async System.Threading.Tasks.Task<PaymentInstrumentListForCustomer> GetCustomerPaymentInstrumentsListAsync (string customerTokenId, string profileId = null, long? offset = null, long? limit = null)
787+
/// <returns>Task of PaymentInstrumentList</returns>
788+
public async System.Threading.Tasks.Task<PaymentInstrumentList> GetCustomerPaymentInstrumentsListAsync (string customerTokenId, string profileId = null, long? offset = null, long? limit = null)
789789
{
790-
ApiResponse<PaymentInstrumentListForCustomer> localVarResponse = await GetCustomerPaymentInstrumentsListAsyncWithHttpInfo(customerTokenId, profileId, offset, limit);
790+
ApiResponse<PaymentInstrumentList> localVarResponse = await GetCustomerPaymentInstrumentsListAsyncWithHttpInfo(customerTokenId, profileId, offset, limit);
791791
return localVarResponse.Data;
792792

793793
}
@@ -800,8 +800,8 @@ public async System.Threading.Tasks.Task<PaymentInstrumentListForCustomer> GetCu
800800
/// <param name="profileId">The id of a profile containing user specific TMS configuration. (optional)</param>
801801
/// <param name="offset">Starting record in zero-based dataset that should be returned as the first object in the array. Default is 0. (optional, default to 0)</param>
802802
/// <param name="limit">The maximum number that can be returned in the array starting from the offset record in zero-based dataset. Default is 20, maximum is 100. (optional, default to 20)</param>
803-
/// <returns>Task of ApiResponse (PaymentInstrumentListForCustomer)</returns>
804-
public async System.Threading.Tasks.Task<ApiResponse<PaymentInstrumentListForCustomer>> GetCustomerPaymentInstrumentsListAsyncWithHttpInfo (string customerTokenId, string profileId = null, long? offset = null, long? limit = null)
803+
/// <returns>Task of ApiResponse (PaymentInstrumentList)</returns>
804+
public async System.Threading.Tasks.Task<ApiResponse<PaymentInstrumentList>> GetCustomerPaymentInstrumentsListAsyncWithHttpInfo (string customerTokenId, string profileId = null, long? offset = null, long? limit = null)
805805
{
806806
// verify the required parameter 'customerTokenId' is set
807807
if (customerTokenId == null)
@@ -848,9 +848,9 @@ public async System.Threading.Tasks.Task<ApiResponse<PaymentInstrumentListForCus
848848
if (exception != null) throw exception;
849849
}
850850

851-
return new ApiResponse<PaymentInstrumentListForCustomer>(localVarStatusCode,
851+
return new ApiResponse<PaymentInstrumentList>(localVarStatusCode,
852852
localVarResponse.Headers.ToDictionary(x => x.Name, x => x.Value.ToString()),
853-
(PaymentInstrumentListForCustomer) Configuration.ApiClient.Deserialize(localVarResponse, typeof(PaymentInstrumentListForCustomer))); // Return statement
853+
(PaymentInstrumentList) Configuration.ApiClient.Deserialize(localVarResponse, typeof(PaymentInstrumentList))); // Return statement
854854
}
855855

856856
/// <summary>

0 commit comments

Comments
 (0)