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

Commit

Permalink
Fixed issue #68
Browse files Browse the repository at this point in the history
Fixed issue #68
Corrected README
  • Loading branch information
durgeshpatel-hs committed May 2, 2019
1 parent bf27948 commit d46cfc1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

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

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

* **Use the [Issue Tracker](https://github.com/hellosign/hellosign-dotnet-sdk/issues) to report bugs or missing functionality in this library.**
* **Send an email to apisupport@hellosign.com to request help with our API or your account.**
Expand Down
2 changes: 1 addition & 1 deletion src/HelloSign/Models/CustomField.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public class CustomField
[JsonProperty("editor")]
public string Editor { get; set; }
[JsonProperty("required")]
public bool Required { get; set; }
public bool? Required { get; set; }

// Properties below are just used when deserializing API responses
public string Type { get; set; }
Expand Down
2 changes: 1 addition & 1 deletion src/HelloSign/Models/TemplateSignatureRequest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public void AddCc(string role, string emailAddress)
/// <param name="value"></param>
/// <param name="editor"></param>
/// <param name="required"></param>
public void AddCustomField(string key, string value, string editor = null, bool required = false)
public void AddCustomField(string key, string value, string editor = null, bool? required = null)
{
var customField = new CustomField();
customField.Name = key;
Expand Down

0 comments on commit d46cfc1

Please sign in to comment.