Skip to content
This repository has been archived by the owner on Mar 19, 2024. It is now read-only.

Commit

Permalink
Release 3.42.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
IngenicoEPayments committed Aug 11, 2023
1 parent 9ef5a03 commit 5ed0245
Show file tree
Hide file tree
Showing 9 changed files with 21 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
<PropertyGroup>
<TargetFrameworks>net45;netstandard2.0;netstandard2.1</TargetFrameworks>
<RootNamespace>Ingenico.Connect.Sdk</RootNamespace>
<AssemblyVersion>3.41.0</AssemblyVersion>
<Version>3.41.0</Version>
<AssemblyVersion>3.42.0</AssemblyVersion>
<Version>3.42.0</Version>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<Company>Ingenico ePayments</Company>
<Product>Ingenico Connect .NET SDK examples</Product>
Expand Down
4 changes: 2 additions & 2 deletions connect-sdk-dotnet-it/connect-sdk-dotnet-it.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
<PropertyGroup>
<TargetFrameworks>net45;netcoreapp2.1;netcoreapp3.1</TargetFrameworks>
<RootNamespace>Ingenico.Connect.Sdk</RootNamespace>
<AssemblyVersion>3.41.0</AssemblyVersion>
<Version>3.41.0</Version>
<AssemblyVersion>3.42.0</AssemblyVersion>
<Version>3.42.0</Version>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<Company>Ingenico ePayments</Company>
<Product>Ingenico Connect .NET SDK integration tests</Product>
Expand Down
4 changes: 2 additions & 2 deletions connect-sdk-dotnet-tests/connect-sdk-dotnet-tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
<PropertyGroup>
<TargetFrameworks>net45;netcoreapp2.1;netcoreapp3.1</TargetFrameworks>
<RootNamespace>Ingenico.Connect.Sdk</RootNamespace>
<AssemblyVersion>3.41.0</AssemblyVersion>
<Version>3.41.0</Version>
<AssemblyVersion>3.42.0</AssemblyVersion>
<Version>3.42.0</Version>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<Company>Ingenico ePayments</Company>
<Product>Ingenico Connect .NET SDK unit tests</Product>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
<PropertyGroup>
<TargetFrameworks>net45;netstandard2.0;netstandard2.1</TargetFrameworks>
<RootNamespace>Ingenico.Connect.Sdk</RootNamespace>
<AssemblyVersion>3.41.0</AssemblyVersion>
<Version>3.41.0</Version>
<AssemblyVersion>3.42.0</AssemblyVersion>
<Version>3.42.0</Version>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Company>Ingenico ePayments</Company>
<Product>Ingenico Connect .NET SDK</Product>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,8 @@ public class OrderReferences
public long? MerchantOrderId { get; set; } = null;

/// <summary>
/// <div class="alert alert-info">Note that the maximum length of this field for transactions processed on the GlobalCollect platform is 30.</div>Your unique reference of the transaction that is also returned in our report files. This is almost always used for your reconciliation of our report files.
/// <div class="alert alert-info">Note that the maximum length of this field for transactions processed on the GlobalCollect platform is 30.</div>
/// <div class="alert alert-info">Note that the maximum length of this field for transactions processed on the WL Online Payment Acceptance Platform platform is 50.</div>Your unique reference of the transaction that is also returned in our report files. This is almost always used for your reconciliation of our report files.
/// </summary>
public string MerchantReference { get; set; } = null;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
* This class was auto-generated from the API references found at
* https://epayments-api.developer-ingenico.com/s2sapi/v1/
*/
using Ingenico.Connect.Sdk.Domain.Definitions;

namespace Ingenico.Connect.Sdk.Domain.Payment.Definitions
{
public class RefundCardMethodSpecificOutput : RefundMethodSpecificOutput
Expand All @@ -10,5 +12,10 @@ public class RefundCardMethodSpecificOutput : RefundMethodSpecificOutput
/// Card Authorization code as returned by the acquirer
/// </summary>
public string AuthorisationCode { get; set; } = null;

/// <summary>
/// Object containing card details
/// </summary>
public CardEssentials Card { get; set; } = null;
}
}
2 changes: 1 addition & 1 deletion connect-sdk-dotnet/Merchant/Payments/FindPaymentsParams.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public class FindPaymentsParams : AbstractParamRequest
public string HostedCheckoutId { get; set; } = null;

/// <summary>
/// Your unique transaction reference to filter on.
/// Your unique transaction reference to filter on. The maximum length is 52 characters for payments that are processed by WL Online Payment Acceptance platform.
/// </summary>
public string MerchantReference { get; set; } = null;

Expand Down
2 changes: 1 addition & 1 deletion connect-sdk-dotnet/MetaDataProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ internal string PlatformIdentifier
}
}

const string SDK_VERSION = "3.41.0";
const string SDK_VERSION = "3.42.0";

const string SERVER_META_INFO_HEADER = "X-GCS-ServerMetaInfo";

Expand Down
4 changes: 2 additions & 2 deletions connect-sdk-dotnet/connect-sdk-dotnet.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
<PropertyGroup>
<TargetFrameworks>net45;netstandard2.0;netstandard2.1</TargetFrameworks>
<RootNamespace>Ingenico.Connect.Sdk</RootNamespace>
<AssemblyVersion>3.41.0</AssemblyVersion>
<Version>3.41.0</Version>
<AssemblyVersion>3.42.0</AssemblyVersion>
<Version>3.42.0</Version>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Company>Ingenico ePayments</Company>
<Product>Ingenico Connect .NET SDK</Product>
Expand Down

0 comments on commit 5ed0245

Please sign in to comment.