hellosign / hellosign-dotnet-sdk

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

IsForEmbeddedSigning field is false for every SignatureRequest #101

Open chrisofspades opened 3 years ago

chrisofspades commented 3 years ago

When I get a SignatureRequest objects using GetSignatureRequest(), even ones that I know were made using embedded signing, the IsForEmbeddedSigning field is always false. A simple example:

var client = new HelloSign.Client(apiKey);
var request = client.GetSignatureRequest(id);

// Always prints false
Console.WriteLine("IsForEmbeddedSigning: {0}", request.IsForEmbeddedSigning);

Does this field do anything? Is there any way to tell if a request was embedded or not?