Skip to content

Commit

Permalink
minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
awesmdiver committed Apr 25, 2022
1 parent d340de6 commit c21c6a9
Show file tree
Hide file tree
Showing 8 changed files with 27 additions and 15 deletions.
20 changes: 20 additions & 0 deletions dotNET/PFProSDK/PFProSDK.nuspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<?xml version="1.0" encoding="utf-8"?>
<package >
<metadata>
<id>Payflow_Pro_dotNet_SDK</id>
<version>5.02</version>
<title>Payflow Pro dotNET SDK</title>
<authors>PayPal</authors>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<license type="expression">MIT</license>
<!-- <icon>icon.png</icon> -->
<projectUrl>https://github.com/paypal/payflow-gateway</projectUrl>
<description>A simple SDK allowing easy integration with the Payflow Gateway for .NET.</description>
<releaseNotes>Fixed issue where RecurringResponse object was not returning all available values in the response. Added SCAExemption, CitDate and VMaid under the Invoice object to support Strong Customer Authentication.</releaseNotes>
<copyright></copyright>
<tags>Payflow Payflow_Gateway</tags>
</metadata>
<frameworkAssemblies>
<frameworkAssembly assemblyName="System.Net" />
</frameworkAssemblies>
</package>
2 changes: 1 addition & 1 deletion dotNET/PFProSDK/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
// Setting ComVisible to false makes the types in this assembly not visible
// to COM components. If you need to access a type in this assembly from
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]
[assembly: ComVisible(true)]

// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("9bc0d802-8213-4664-9a3e-1d7446e94962")]
Expand Down
2 changes: 1 addition & 1 deletion dotNET/PFProSDK/ndoc.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12998,7 +12998,7 @@
<item><term>P_TRANSTATEn</term><description>RecurringResponse</description><description><see cref='P:PayPal.Payments.DataObjects.RecurringResponse.InquiryParams'>InquiryParams</see></description><description>String</description></item>
<item><term>P_TRANSTIMEn</term><description>RecurringResponse</description><description><see cref='P:PayPal.Payments.DataObjects.RecurringResponse.InquiryParams'>InquiryParams</see></description><description>String</description></item>
<item><term>PAGESTYLE</term><description>ECSetRequest</description><description><see cref='P:PayPal.Payments.DataObjects.ECSetRequest.PageStyle'>PageStyle</see></description><description>String</description></item>
<item><term>PAR</term><description>CreditCard</description><description></description><description>String</description></item>
<item><term>PAR</term><description>Invoice</description><description><see cref='P:PayPal.Payments.DataObjects.Invoice.Par'>Par</see></description><description>String</description></item>
<item><term>PAREQ</term><description>BuyerAuthResponse</description><description><see cref='P:PayPal.Payments.DataObjects.BuyerAuthResponse.PaReq'>PaReq</see></description><description>String</description></item>
<item><term>PARES</term><description>BuyerAuthVATransaction</description><description></description><description>String</description></item>
<item><term>PARID</term><description>TransactionResponse</description><description><see cref='P:PayPal.Payments.DataObjects.TransactionResponse.ParId'>ParId</see ></description><description>String</description></item >
Expand Down
Binary file added dotNET/PFProSDK/nuget.exe
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

namespace PayPal.Payments.DataObjects
{
/// <summary>
Expand Down Expand Up @@ -189,7 +188,7 @@ namespace PayPal.Payments.DataObjects
/// <item><term>P_TRANSTATEn</term><description>RecurringResponse</description><description><see cref='RecurringResponse.InquiryParams'>InquiryParams</see></description><description>String</description></item>
/// <item><term>P_TRANSTIMEn</term><description>RecurringResponse</description><description><see cref='RecurringResponse.InquiryParams'>InquiryParams</see></description><description>String</description></item>
/// <item><term>PAGESTYLE</term><description>ECSetRequest</description><description><see cref='ECSetRequest.PageStyle'>PageStyle</see></description><description>String</description></item>
/// <item><term>PAR</term><description>CreditCard</description><description></description><description>String</description></item>
/// <item><term>PAR</term><description>Invoice</description><description><see cref='Invoice.Par'>Par</see></description><description>String</description></item>
/// <item><term>PAREQ</term><description>BuyerAuthResponse</description><description><see cref='BuyerAuthResponse.PaReq'>PaReq</see></description><description>String</description></item>
/// <item><term>PARES</term><description>BuyerAuthVATransaction</description><description></description><description>String</description></item>
/// <item><term>PARID</term><description>TransactionResponse</description><description><see cref='TransactionResponse.ParId'>ParId</see ></description><description>String</description></item >
Expand Down
2 changes: 1 addition & 1 deletion java/.idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 3 additions & 9 deletions java/.idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion java/src/sdk/dataobjects/paypal/payflow/Invoice.java
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,6 @@ protected void generateRequest() {
super.getRequestBuffer().append(PayflowUtility.appendToRequest(PayflowConstants.PARAM_VMAID, vMaid));
super.getRequestBuffer().append(PayflowUtility.appendToRequest(PayflowConstants.PARAM_PAR, par));


if (billTo != null) {
billTo.setRequestBuffer(getRequestBuffer());
billTo.generateRequest();
Expand Down

0 comments on commit c21c6a9

Please sign in to comment.