hellosign / hellosign-dotnet-sdk

A .NET SDK for the HelloSign API
MIT License
26 stars 29 forks source link

Adding signing_options feature to all signature request endpoints. #61

Closed Framinus closed 5 years ago

Framinus commented 5 years ago

Adding the signing_options parameter to all non-embedded and embedded signature request endpoints.

ie: signing_options = {"draw": true, "type": true, "upload": true, "phone": false, "default": "draw"}

BHSPitMonkey commented 5 years ago

This is now supported as of v0.5.9! Here's how to use it:

request.SigningOptions = new SigningOptions
{
    Draw = true,
    Type = true,
    Upload = true,
    Phone = false
    Default = "draw"
};

Thanks again for the report!