Skip to content

Commit

Permalink
Release 0.4.4
Browse files Browse the repository at this point in the history
  • Loading branch information
fern-api[bot] committed Jul 2, 2024
1 parent fd91796 commit 0cd45e1
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 14 deletions.
20 changes: 10 additions & 10 deletions src/Mercoa.Client.sln
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.0.31903.59
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Mercoa.Client", "Mercoa.Client\Mercoa.Client.csproj", "{BE8670D2-2CF2-4965-93ED-046949573437}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Mercoa.Client", "Mercoa.Client\Mercoa.Client.csproj", "{4B9D18DD-2426-4F06-90AA-AC0332BE8084}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Mercoa.Client.Test", "Mercoa.Client.Test\Mercoa.Client.Test.csproj", "{32AB4319-46E4-472F-9F93-41785194F553}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Mercoa.Client.Test", "Mercoa.Client.Test\Mercoa.Client.Test.csproj", "{18880AA2-0C2F-46CD-9FF9-FEC138FC41D6}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand All @@ -16,13 +16,13 @@ Global
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{BE8670D2-2CF2-4965-93ED-046949573437}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{BE8670D2-2CF2-4965-93ED-046949573437}.Debug|Any CPU.Build.0 = Debug|Any CPU
{BE8670D2-2CF2-4965-93ED-046949573437}.Release|Any CPU.ActiveCfg = Release|Any CPU
{BE8670D2-2CF2-4965-93ED-046949573437}.Release|Any CPU.Build.0 = Release|Any CPU
{32AB4319-46E4-472F-9F93-41785194F553}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{32AB4319-46E4-472F-9F93-41785194F553}.Debug|Any CPU.Build.0 = Debug|Any CPU
{32AB4319-46E4-472F-9F93-41785194F553}.Release|Any CPU.ActiveCfg = Release|Any CPU
{32AB4319-46E4-472F-9F93-41785194F553}.Release|Any CPU.Build.0 = Release|Any CPU
{4B9D18DD-2426-4F06-90AA-AC0332BE8084}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{4B9D18DD-2426-4F06-90AA-AC0332BE8084}.Debug|Any CPU.Build.0 = Debug|Any CPU
{4B9D18DD-2426-4F06-90AA-AC0332BE8084}.Release|Any CPU.ActiveCfg = Release|Any CPU
{4B9D18DD-2426-4F06-90AA-AC0332BE8084}.Release|Any CPU.Build.0 = Release|Any CPU
{18880AA2-0C2F-46CD-9FF9-FEC138FC41D6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{18880AA2-0C2F-46CD-9FF9-FEC138FC41D6}.Debug|Any CPU.Build.0 = Debug|Any CPU
{18880AA2-0C2F-46CD-9FF9-FEC138FC41D6}.Release|Any CPU.ActiveCfg = Release|Any CPU
{18880AA2-0C2F-46CD-9FF9-FEC138FC41D6}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
EndGlobal
2 changes: 1 addition & 1 deletion src/Mercoa.Client/Mercoa.Client.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<TargetFrameworks>net8.0;net7.0;net6.0;net5.0;net4.0</TargetFrameworks>
<ImplicitUsings>enable</ImplicitUsings>
<NuGetAudit>false</NuGetAudit>
<Version>0.4.3</Version>
<Version>0.4.4</Version>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageProjectUrl>https://github.com/mercoa-finance/csharp</PackageProjectUrl>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/Mercoa.Client/Mercoa.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public Mercoa(string token = null, ClientOptions clientOptions = null)
{ "Authorization", $"Bearer {token}" },
{ "X-Fern-Language", "C#" },
{ "X-Fern-SDK-Name", "Mercoa.Client" },
{ "X-Fern-SDK-Version", "0.4.3" },
{ "X-Fern-SDK-Version", "0.4.4" },
},
clientOptions ?? new ClientOptions()
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public class CustomPaymentMethodRequest
/// ID for this payment method in your system
/// </summary>
[JsonPropertyName("foreignId")]
public string ForeignId { get; init; }
public string? ForeignId { get; init; }

[JsonPropertyName("accountName")]
public string? AccountName { get; init; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ public class CustomPaymentMethodResponse
/// ID for this payment method in your system
/// </summary>
[JsonPropertyName("foreignId")]
public string ForeignId { get; init; }
public string? ForeignId { get; init; }

[JsonPropertyName("accountName")]
public string? AccountName { get; init; }
Expand Down

0 comments on commit 0cd45e1

Please sign in to comment.