Skip to content
This repository was archived by the owner on Oct 17, 2023. It is now read-only.

Commit 113adc2

Browse files
authored
Merge pull request #71 from hellosign/fix-issue-68
Fixes issue #68 and bumps version to 1.2.0
2 parents bf27948 + 09299d7 commit 113adc2

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
An official library for using the HelloSign API written in C#.NET and powered by RestSharp.
66

7-
**This SDK is currently in beta. If you need help:**
7+
## Getting Help
88

99
* **Use the [Issue Tracker](https://github.com/hellosign/hellosign-dotnet-sdk/issues) to report bugs or missing functionality in this library.**
1010
* **Send an email to apisupport@hellosign.com to request help with our API or your account.**

src/HelloSign/HelloSign.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@
77
<Description>Client library for using the HelloSign API</Description>
88
<Authors>HelloSign</Authors>
99
<!-- NOTE: The version stated here gets reported in the user-agent string for HTTP requests made. -->
10-
<Version>1.1.0</Version>
10+
<Version>1.2.0</Version>
1111
<Configuration>Release</Configuration>
1212
</PropertyGroup>
1313
<ItemGroup>
1414
<PackageReference Include="Newtonsoft.Json" Version="11.0.1" />
1515
<PackageReference Include="RestSharp" Version="[106.0.0,106.5.4]" />
1616
</ItemGroup>
17-
</Project>
17+
</Project>

src/HelloSign/Models/CustomField.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public class CustomField
1717
[JsonProperty("editor")]
1818
public string Editor { get; set; }
1919
[JsonProperty("required")]
20-
public bool Required { get; set; }
20+
public bool? Required { get; set; }
2121

2222
// Properties below are just used when deserializing API responses
2323
public string Type { get; set; }

src/HelloSign/Models/TemplateSignatureRequest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ public void AddCc(string role, string emailAddress)
5959
/// <param name="value"></param>
6060
/// <param name="editor"></param>
6161
/// <param name="required"></param>
62-
public void AddCustomField(string key, string value, string editor = null, bool required = false)
62+
public void AddCustomField(string key, string value, string editor = null, bool? required = null)
6363
{
6464
var customField = new CustomField();
6565
customField.Name = key;

0 commit comments

Comments
 (0)