Skip to content

Commit e1e817f

Browse files
committed
Fixing issue with payment type method
1 parent 79fc8b6 commit e1e817f

11 files changed

+60
-405
lines changed

Model/TssV2TransactionsGet200ResponsePaymentInformationPaymentType.cs

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@ public partial class TssV2TransactionsGet200ResponsePaymentInformationPaymentTyp
3636
/// <param name="Name">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. .</param>
3737
/// <param name="SubTypeName">SubType Name is detail information about Payment Type. Examples: For Card, if Credit or Debit or PrePaid. For Bank Transfer, if Online Bank Transfer or Wire Transfers. .</param>
3838
/// <param name="FundingSource">FundingSource.</param>
39-
/// <param name="Method">Method.</param>
39+
/// <param name="Method">A Payment Type is enabled through a Method. Examples: Visa, Master Card, ApplePay, iDeal.</param>
4040
/// <param name="AuthenticationMethod">A Payment Type Authentication Method is the means used to verify that the presenter of the Payment Type credential is an authorized user of the Payment Instrument. Examples: 3DSecure – Verified by Visa, 3DSecure – MasteCard Secure Code .</param>
41-
public TssV2TransactionsGet200ResponsePaymentInformationPaymentType(string Name = default(string), string SubTypeName = default(string), TssV2TransactionsGet200ResponsePaymentInformationPaymentTypeFundingSource FundingSource = default(TssV2TransactionsGet200ResponsePaymentInformationPaymentTypeFundingSource), TssV2TransactionsGet200ResponsePaymentInformationPaymentTypeMethod Method = default(TssV2TransactionsGet200ResponsePaymentInformationPaymentTypeMethod), string AuthenticationMethod = default(string))
41+
public TssV2TransactionsGet200ResponsePaymentInformationPaymentType(string Name = default(string), string SubTypeName = default(string), TssV2TransactionsGet200ResponsePaymentInformationPaymentTypeFundingSource FundingSource = default(TssV2TransactionsGet200ResponsePaymentInformationPaymentTypeFundingSource), string Method = default(string), string AuthenticationMethod = default(string))
4242
{
4343
this.Name = Name;
4444
this.SubTypeName = SubTypeName;
@@ -68,10 +68,11 @@ public partial class TssV2TransactionsGet200ResponsePaymentInformationPaymentTyp
6868
public TssV2TransactionsGet200ResponsePaymentInformationPaymentTypeFundingSource FundingSource { get; set; }
6969

7070
/// <summary>
71-
/// Gets or Sets Method
71+
/// A Payment Type is enabled through a Method. Examples: Visa, Master Card, ApplePay, iDeal
7272
/// </summary>
73+
/// <value>A Payment Type is enabled through a Method. Examples: Visa, Master Card, ApplePay, iDeal</value>
7374
[DataMember(Name="method", EmitDefaultValue=false)]
74-
public TssV2TransactionsGet200ResponsePaymentInformationPaymentTypeMethod Method { get; set; }
75+
public string Method { get; set; }
7576

7677
/// <summary>
7778
/// A Payment Type Authentication Method is the means used to verify that the presenter of the Payment Type credential is an authorized user of the Payment Instrument. Examples: 3DSecure – Verified by Visa, 3DSecure – MasteCard Secure Code

Model/TssV2TransactionsGet200ResponsePaymentInformationPaymentTypeMethod.cs

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

Model/TssV2TransactionsPost201ResponseEmbeddedPaymentInformationPaymentType.cs

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ public partial class TssV2TransactionsPost201ResponseEmbeddedPaymentInformationP
3434
/// Initializes a new instance of the <see cref="TssV2TransactionsPost201ResponseEmbeddedPaymentInformationPaymentType" /> class.
3535
/// </summary>
3636
/// <param name="Name">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. .</param>
37-
/// <param name="Method">Method.</param>
38-
public TssV2TransactionsPost201ResponseEmbeddedPaymentInformationPaymentType(string Name = default(string), TssV2TransactionsGet200ResponsePaymentInformationPaymentTypeMethod Method = default(TssV2TransactionsGet200ResponsePaymentInformationPaymentTypeMethod))
37+
/// <param name="Method">A Payment Type is enabled through a Method. Examples: Visa, Master Card, ApplePay, iDeal.</param>
38+
public TssV2TransactionsPost201ResponseEmbeddedPaymentInformationPaymentType(string Name = default(string), string Method = default(string))
3939
{
4040
this.Name = Name;
4141
this.Method = Method;
@@ -49,10 +49,11 @@ public partial class TssV2TransactionsPost201ResponseEmbeddedPaymentInformationP
4949
public string Name { get; set; }
5050

5151
/// <summary>
52-
/// Gets or Sets Method
52+
/// A Payment Type is enabled through a Method. Examples: Visa, Master Card, ApplePay, iDeal
5353
/// </summary>
54+
/// <value>A Payment Type is enabled through a Method. Examples: Visa, Master Card, ApplePay, iDeal</value>
5455
[DataMember(Name="method", EmitDefaultValue=false)]
55-
public TssV2TransactionsGet200ResponsePaymentInformationPaymentTypeMethod Method { get; set; }
56+
public string Method { get; set; }
5657

5758
/// <summary>
5859
/// Returns the string presentation of the object

cybersource-rest-client-dotnet.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ OpenAPI spec version: 0.0.1
1212

1313
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
1414
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
15-
<ProjectGuid>{4E08DDD3-2368-4F92-8627-E820163F8D3D}</ProjectGuid>
15+
<ProjectGuid>{C140CBF9-B64B-4664-B16A-8F4726970EBC}</ProjectGuid>
1616
<OutputType>Library</OutputType>
1717
<AppDesignerFolder>Properties</AppDesignerFolder>
1818
<RootNamespace>CyberSource</RootNamespace>

cybersource-rest-client-dotnet.sln

Lines changed: 20 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,27 @@
11
Microsoft Visual Studio Solution File, Format Version 12.00
2-
# Visual Studio 15
3-
VisualStudioVersion = 15.0.28307.645
2+
# Visual Studio 14
3+
VisualStudioVersion = 14.0.25420.1
44
MinimumVisualStudioVersion = 10.0.40219.1
5-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "cybersource-rest-client-dotnet", "cybersource-rest-client-dotnet.csproj", "{4E08DDD3-2368-4F92-8627-E820163F8D3D}"
5+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "cybersource-rest-client-dotnet", "cybersource-rest-client-dotnet.csproj", "{C140CBF9-B64B-4664-B16A-8F4726970EBC}"
66
EndProject
77
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "cybersource-rest-client-dotnet.Test", "test\cybersource-rest-client-dotnet.Test.csproj", "{19F1DEBC-DE5E-4517-8062-F000CD499087}"
88
EndProject
99
Global
10-
GlobalSection(SolutionConfigurationPlatforms) = preSolution
11-
Debug|Any CPU = Debug|Any CPU
12-
Release|Any CPU = Release|Any CPU
13-
EndGlobalSection
14-
GlobalSection(ProjectConfigurationPlatforms) = postSolution
15-
{4E08DDD3-2368-4F92-8627-E820163F8D3D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
16-
{4E08DDD3-2368-4F92-8627-E820163F8D3D}.Debug|Any CPU.Build.0 = Debug|Any CPU
17-
{4E08DDD3-2368-4F92-8627-E820163F8D3D}.Release|Any CPU.ActiveCfg = Release|Any CPU
18-
{4E08DDD3-2368-4F92-8627-E820163F8D3D}.Release|Any CPU.Build.0 = Release|Any CPU
19-
{19F1DEBC-DE5E-4517-8062-F000CD499087}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
20-
{19F1DEBC-DE5E-4517-8062-F000CD499087}.Debug|Any CPU.Build.0 = Debug|Any CPU
21-
{19F1DEBC-DE5E-4517-8062-F000CD499087}.Release|Any CPU.ActiveCfg = Release|Any CPU
22-
{19F1DEBC-DE5E-4517-8062-F000CD499087}.Release|Any CPU.Build.0 = Release|Any CPU
23-
EndGlobalSection
24-
GlobalSection(SolutionProperties) = preSolution
25-
HideSolutionNode = FALSE
26-
EndGlobalSection
27-
GlobalSection(ExtensibilityGlobals) = postSolution
28-
SolutionGuid = {D34970CF-29FA-4ED7-BF37-E7B80C5C7533}
29-
EndGlobalSection
10+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
11+
Debug|Any CPU = Debug|Any CPU
12+
Release|Any CPU = Release|Any CPU
13+
EndGlobalSection
14+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
15+
{C140CBF9-B64B-4664-B16A-8F4726970EBC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
16+
{C140CBF9-B64B-4664-B16A-8F4726970EBC}.Debug|Any CPU.Build.0 = Debug|Any CPU
17+
{C140CBF9-B64B-4664-B16A-8F4726970EBC}.Release|Any CPU.ActiveCfg = Release|Any CPU
18+
{C140CBF9-B64B-4664-B16A-8F4726970EBC}.Release|Any CPU.Build.0 = Release|Any CPU
19+
{19F1DEBC-DE5E-4517-8062-F000CD499087}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
20+
{19F1DEBC-DE5E-4517-8062-F000CD499087}.Debug|Any CPU.Build.0 = Debug|Any CPU
21+
{19F1DEBC-DE5E-4517-8062-F000CD499087}.Release|Any CPU.ActiveCfg = Release|Any CPU
22+
{19F1DEBC-DE5E-4517-8062-F000CD499087}.Release|Any CPU.Build.0 = Release|Any CPU
23+
EndGlobalSection
24+
GlobalSection(SolutionProperties) = preSolution
25+
HideSolutionNode = FALSE
26+
EndGlobalSection
3027
EndGlobal

docs/TssV2TransactionsGet200ResponsePaymentInformationPaymentType.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Name | Type | Description | Notes
66
**Name** | **string** | 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. | [optional]
77
**SubTypeName** | **string** | SubType Name is detail information about Payment Type. Examples: For Card, if Credit or Debit or PrePaid. For Bank Transfer, if Online Bank Transfer or Wire Transfers. | [optional]
88
**FundingSource** | [**TssV2TransactionsGet200ResponsePaymentInformationPaymentTypeFundingSource**](TssV2TransactionsGet200ResponsePaymentInformationPaymentTypeFundingSource.md) | | [optional]
9-
**Method** | [**TssV2TransactionsGet200ResponsePaymentInformationPaymentTypeMethod**](TssV2TransactionsGet200ResponsePaymentInformationPaymentTypeMethod.md) | | [optional]
9+
**Method** | **string** | A Payment Type is enabled through a Method. Examples: Visa, Master Card, ApplePay, iDeal | [optional]
1010
**AuthenticationMethod** | **string** | A Payment Type Authentication Method is the means used to verify that the presenter of the Payment Type credential is an authorized user of the Payment Instrument. Examples: 3DSecure – Verified by Visa, 3DSecure – MasteCard Secure Code | [optional]
1111

1212
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

docs/TssV2TransactionsGet200ResponsePaymentInformationPaymentTypeMethod.md

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

0 commit comments

Comments
 (0)