Skip to content

Commit 236dc95

Browse files
Release 0.0.304
1 parent bc45e47 commit 236dc95

5 files changed

Lines changed: 11 additions & 5 deletions

File tree

.fern/metadata.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55
"generatorConfig": {
66
"generate-mock-server-tests": false
77
},
8-
"originGitCommit": "f832172434ff6e66a6d2bae4417345ee599884a1",
9-
"sdkVersion": "0.0.303"
8+
"originGitCommit": "6415b5451c2da0d2c1cef85dc4081265a866360c",
9+
"sdkVersion": "0.0.304"
1010
}

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ The Payabli C# library provides convenient access to the Payabli APIs from C#.
1111
- [Requirements](#requirements)
1212
- [Installation](#installation)
1313
- [Changelog](#changelog)
14+
- [Getting Started](#getting-started)
1415
- [Passing Query Parameters](#passing-query-parameters)
1516
- [Usage](#usage)
1617
- [Environments](#environments)
@@ -44,6 +45,11 @@ dotnet add package Payabli.SDK
4445
The changelog for the official Payabli C# SDK is available on the Payabli Docs site. See [C# SDK Changelog](https://docs.payabli.com/changelog/csharp-sdk) for more information.
4546

4647

48+
## Getting Started
49+
50+
Visit the Payabli Docs site to get started with the official Payabli C# SDK. See [Use the C# SDK](https://docs.payabli.com/developers/platform-sdk-csharp-guide) for more information.
51+
52+
4753
## Passing Query Parameters
4854

4955
```csharp

src/PayabliApi/Core/Public/Version.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ namespace PayabliApi;
33
[Serializable]
44
internal class Version
55
{
6-
public const string Current = "0.0.303";
6+
public const string Current = "0.0.304";
77
}

src/PayabliApi/PayabliApi.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<ImplicitUsings>enable</ImplicitUsings>
55
<LangVersion>12</LangVersion>
66
<Nullable>enable</Nullable>
7-
<Version>0.0.303</Version>
7+
<Version>0.0.304</Version>
88
<AssemblyVersion>$(Version)</AssemblyVersion>
99
<FileVersion>$(Version)</FileVersion>
1010
<PackageReadmeFile>README.md</PackageReadmeFile>

src/PayabliApi/PayabliApiClient.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public PayabliApiClient(string apiKey, ClientOptions? clientOptions = null)
1515
{ "X-Fern-Language", "C#" },
1616
{ "X-Fern-SDK-Name", "PayabliApi" },
1717
{ "X-Fern-SDK-Version", Version.Current },
18-
{ "User-Agent", "Payabli.SDK/0.0.303" },
18+
{ "User-Agent", "Payabli.SDK/0.0.304" },
1919
}
2020
);
2121
foreach (var header in platformHeaders)

0 commit comments

Comments
 (0)