Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Level3TransmissionStatus Deserialization fix on CaptureResponse #170

Draft
wants to merge 4 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -34,17 +34,17 @@ public partial class PtsV2PaymentsCapturesPost201ResponseOrderInformationInvoice
/// Initializes a new instance of the <see cref="PtsV2PaymentsCapturesPost201ResponseOrderInformationInvoiceDetails" /> class.
/// </summary>
/// <param name="Level3TransmissionStatus">Indicates whether CyberSource sent the Level III information to the processor. The possible values are: If your account is not enabled for Level III data or if you did not include the purchasing level field in your request, CyberSource does not include the Level III data in the request sent to the processor. Possible values: - **true** - **false** .</param>
public PtsV2PaymentsCapturesPost201ResponseOrderInformationInvoiceDetails(bool? Level3TransmissionStatus = default(bool?))
public PtsV2PaymentsCapturesPost201ResponseOrderInformationInvoiceDetails(string Level3TransmissionStatus = default(string))
{
this.Level3TransmissionStatus = Level3TransmissionStatus;
}

/// <summary>
/// Indicates whether CyberSource sent the Level III information to the processor. The possible values are: If your account is not enabled for Level III data or if you did not include the purchasing level field in your request, CyberSource does not include the Level III data in the request sent to the processor. Possible values: - **true** - **false**
/// Indicates whether CyberSource sent the Level III information to the processor. The possible values are: If your account is not enabled for Level III data or if you did not include the purchasing level field in your request, CyberSource does not include the Level III data in the request sent to the processor. Possible values: - **Y** - **N**
/// </summary>
/// <value>Indicates whether CyberSource sent the Level III information to the processor. The possible values are: If your account is not enabled for Level III data or if you did not include the purchasing level field in your request, CyberSource does not include the Level III data in the request sent to the processor. Possible values: - **true** - **false** </value>
/// <value>Indicates whether CyberSource sent the Level III information to the processor. The possible values are: If your account is not enabled for Level III data or if you did not include the purchasing level field in your request, CyberSource does not include the Level III data in the request sent to the processor. Possible values: - **Y** - **N** </value>
[DataMember(Name="level3TransmissionStatus", EmitDefaultValue=false)]
public bool? Level3TransmissionStatus { get; set; }
public string Level3TransmissionStatus { get; set; }

/// <summary>
/// Returns the string presentation of the object
Expand Down
4 changes: 2 additions & 2 deletions Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.0.1.38")]
[assembly: AssemblyFileVersion("0.0.1.38")]
[assembly: AssemblyVersion("0.0.1.39")]
[assembly: AssemblyFileVersion("0.0.1.39")]