Skip to content

Commit 17a40bb

Browse files
Merge pull request #71 from CyberSource/december-release-2023
December release 2023
2 parents c0ada21 + c91185d commit 17a40bb

File tree

731 files changed

+6075
-5982
lines changed

Some content is hidden

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

731 files changed

+6075
-5982
lines changed

cybersource-rest-client-netstandard/cybersource-rest-client-netstandard.Test/Api/CreateNewWebhooksApiTests.cs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -65,26 +65,26 @@ public void InstanceTest()
6565

6666

6767
/// <summary>
68-
/// Test CreateWebhook
68+
/// Test CreateWebhookSubscription
6969
/// </summary>
7070
[Test]
71-
public void CreateWebhookTest()
71+
public void CreateWebhookSubscriptionTest()
7272
{
7373
// TODO uncomment below to test the method and replace null with proper value
74-
//CreateWebhook createWebhook = null;
75-
//var response = instance.CreateWebhook(createWebhook);
74+
//CreateWebhookRequest createWebhookRequest = null;
75+
//var response = instance.CreateWebhookSubscription(createWebhookRequest);
7676
//Assert.IsInstanceOf<InlineResponse2013> (response, "response is InlineResponse2013");
7777
}
7878

7979
/// <summary>
80-
/// Test FindProductToSubscribe
80+
/// Test FindProductsToSubscribe
8181
/// </summary>
8282
[Test]
83-
public void FindProductToSubscribeTest()
83+
public void FindProductsToSubscribeTest()
8484
{
8585
// TODO uncomment below to test the method and replace null with proper value
8686
//string organizationId = null;
87-
//var response = instance.FindProductToSubscribe(organizationId);
87+
//var response = instance.FindProductsToSubscribe(organizationId);
8888
//Assert.IsInstanceOf<List<InlineResponse2003>> (response, "response is List<InlineResponse2003>");
8989
}
9090

cybersource-rest-client-netstandard/cybersource-rest-client-netstandard.Test/Api/ManageWebhooksApiTests.cs

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -77,41 +77,41 @@ public void DeleteWebhookSubscriptionTest()
7777
}
7878

7979
/// <summary>
80-
/// Test GetAllWebhooks
80+
/// Test GetWebhookSubscriptionById
8181
/// </summary>
8282
[Test]
83-
public void GetAllWebhooksTest()
83+
public void GetWebhookSubscriptionByIdTest()
8484
{
8585
// TODO uncomment below to test the method and replace null with proper value
86-
//string organizationId = null;
87-
//string productId = null;
88-
//string eventType = null;
89-
//var response = instance.GetAllWebhooks(organizationId, productId, eventType);
90-
//Assert.IsInstanceOf<List<InlineResponse2004>> (response, "response is List<InlineResponse2004>");
86+
//string webhookId = null;
87+
//var response = instance.GetWebhookSubscriptionById(webhookId);
88+
//Assert.IsInstanceOf<InlineResponse2004> (response, "response is InlineResponse2004");
9189
}
9290

9391
/// <summary>
94-
/// Test GetWebhookDetails
92+
/// Test GetWebhookSubscriptionsByOrg
9593
/// </summary>
9694
[Test]
97-
public void GetWebhookDetailsTest()
95+
public void GetWebhookSubscriptionsByOrgTest()
9896
{
9997
// TODO uncomment below to test the method and replace null with proper value
100-
//string webhookId = null;
101-
//var response = instance.GetWebhookDetails(webhookId);
102-
//Assert.IsInstanceOf<InlineResponse2004> (response, "response is InlineResponse2004");
98+
//string organizationId = null;
99+
//string productId = null;
100+
//string eventType = null;
101+
//var response = instance.GetWebhookSubscriptionsByOrg(organizationId, productId, eventType);
102+
//Assert.IsInstanceOf<List<InlineResponse2004>> (response, "response is List<InlineResponse2004>");
103103
}
104104

105105
/// <summary>
106-
/// Test ReplayPreviousWebhook
106+
/// Test ReplayPreviousWebhooks
107107
/// </summary>
108108
[Test]
109-
public void ReplayPreviousWebhookTest()
109+
public void ReplayPreviousWebhooksTest()
110110
{
111111
// TODO uncomment below to test the method and replace null with proper value
112112
//string webhookId = null;
113-
//ReplayWebhooks replayWebhooks = null;
114-
//instance.ReplayPreviousWebhook(webhookId, replayWebhooks);
113+
//ReplayWebhooksRequest replayWebhooksRequest = null;
114+
//instance.ReplayPreviousWebhooks(webhookId, replayWebhooksRequest);
115115

116116
}
117117

@@ -138,8 +138,8 @@ public void UpdateWebhookSubscriptionTest()
138138
{
139139
// TODO uncomment below to test the method and replace null with proper value
140140
//string webhookId = null;
141-
//UpdateWebhook updateWebhook = null;
142-
//instance.UpdateWebhookSubscription(webhookId, updateWebhook);
141+
//UpdateWebhookRequest updateWebhookRequest = null;
142+
//instance.UpdateWebhookSubscription(webhookId, updateWebhookRequest);
143143

144144
}
145145

cybersource-rest-client-netstandard/cybersource-rest-client-netstandard.Test/Model/CreateWebhookTests.cs renamed to cybersource-rest-client-netstandard/cybersource-rest-client-netstandard.Test/Model/CreateWebhookRequestTests.cs

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -23,26 +23,26 @@
2323
namespace CyberSource.Test
2424
{
2525
/// <summary>
26-
/// Class for testing CreateWebhook
26+
/// Class for testing CreateWebhookRequest
2727
/// </summary>
2828
/// <remarks>
2929
/// This file is automatically generated by Swagger Codegen.
3030
/// Please update the test case below to test the model.
3131
/// </remarks>
3232
[TestFixture]
33-
public class CreateWebhookTests
33+
public class CreateWebhookRequestTests
3434
{
35-
// TODO uncomment below to declare an instance variable for CreateWebhook
36-
//private CreateWebhook instance;
35+
// TODO uncomment below to declare an instance variable for CreateWebhookRequest
36+
//private CreateWebhookRequest instance;
3737

3838
/// <summary>
3939
/// Setup before each test
4040
/// </summary>
4141
[SetUp]
4242
public void Init()
4343
{
44-
// TODO uncomment below to create an instance of CreateWebhook
45-
//instance = new CreateWebhook();
44+
// TODO uncomment below to create an instance of CreateWebhookRequest
45+
//instance = new CreateWebhookRequest();
4646
}
4747

4848
/// <summary>
@@ -55,13 +55,13 @@ public void Cleanup()
5555
}
5656

5757
/// <summary>
58-
/// Test an instance of CreateWebhook
58+
/// Test an instance of CreateWebhookRequest
5959
/// </summary>
6060
[Test]
61-
public void CreateWebhookInstanceTest()
61+
public void CreateWebhookRequestInstanceTest()
6262
{
63-
// TODO uncomment below to test "IsInstanceOfType" CreateWebhook
64-
//Assert.IsInstanceOfType<CreateWebhook> (instance, "variable 'instance' is a CreateWebhook");
63+
// TODO uncomment below to test "IsInstanceOfType" CreateWebhookRequest
64+
//Assert.IsInstanceOfType<CreateWebhookRequest> (instance, "variable 'instance' is a CreateWebhookRequest");
6565
}
6666

6767
/// <summary>

cybersource-rest-client-netstandard/cybersource-rest-client-netstandard.Test/Model/PaymentProductsCurrencyConversionConfigurationInformationTests.cs

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

cybersource-rest-client-netstandard/cybersource-rest-client-netstandard.Test/Model/PaymentProductsECheckServiceInternalOnlyTests.cs

Lines changed: 0 additions & 78 deletions
This file was deleted.
Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -23,26 +23,26 @@
2323
namespace CyberSource.Test
2424
{
2525
/// <summary>
26-
/// Class for testing PaymentProductsCardPresentConnectConfigurationInformationConfigurations
26+
/// Class for testing PaymentsProductsCardPresentConnectConfigurationInformationConfigurations
2727
/// </summary>
2828
/// <remarks>
2929
/// This file is automatically generated by Swagger Codegen.
3030
/// Please update the test case below to test the model.
3131
/// </remarks>
3232
[TestFixture]
33-
public class PaymentProductsCardPresentConnectConfigurationInformationConfigurationsTests
33+
public class PaymentsProductsCardPresentConnectConfigurationInformationConfigurationsTests
3434
{
35-
// TODO uncomment below to declare an instance variable for PaymentProductsCardPresentConnectConfigurationInformationConfigurations
36-
//private PaymentProductsCardPresentConnectConfigurationInformationConfigurations instance;
35+
// TODO uncomment below to declare an instance variable for PaymentsProductsCardPresentConnectConfigurationInformationConfigurations
36+
//private PaymentsProductsCardPresentConnectConfigurationInformationConfigurations instance;
3737

3838
/// <summary>
3939
/// Setup before each test
4040
/// </summary>
4141
[SetUp]
4242
public void Init()
4343
{
44-
// TODO uncomment below to create an instance of PaymentProductsCardPresentConnectConfigurationInformationConfigurations
45-
//instance = new PaymentProductsCardPresentConnectConfigurationInformationConfigurations();
44+
// TODO uncomment below to create an instance of PaymentsProductsCardPresentConnectConfigurationInformationConfigurations
45+
//instance = new PaymentsProductsCardPresentConnectConfigurationInformationConfigurations();
4646
}
4747

4848
/// <summary>
@@ -55,13 +55,13 @@ public void Cleanup()
5555
}
5656

5757
/// <summary>
58-
/// Test an instance of PaymentProductsCardPresentConnectConfigurationInformationConfigurations
58+
/// Test an instance of PaymentsProductsCardPresentConnectConfigurationInformationConfigurations
5959
/// </summary>
6060
[Test]
61-
public void PaymentProductsCardPresentConnectConfigurationInformationConfigurationsInstanceTest()
61+
public void PaymentsProductsCardPresentConnectConfigurationInformationConfigurationsInstanceTest()
6262
{
63-
// TODO uncomment below to test "IsInstanceOfType" PaymentProductsCardPresentConnectConfigurationInformationConfigurations
64-
//Assert.IsInstanceOfType<PaymentProductsCardPresentConnectConfigurationInformationConfigurations> (instance, "variable 'instance' is a PaymentProductsCardPresentConnectConfigurationInformationConfigurations");
63+
// TODO uncomment below to test "IsInstanceOfType" PaymentsProductsCardPresentConnectConfigurationInformationConfigurations
64+
//Assert.IsInstanceOfType<PaymentsProductsCardPresentConnectConfigurationInformationConfigurations> (instance, "variable 'instance' is a PaymentsProductsCardPresentConnectConfigurationInformationConfigurations");
6565
}
6666

6767
/// <summary>

0 commit comments

Comments
 (0)