Skip to content

v2.0.0

Compare
Choose a tag to compare
@cjackson cjackson released this 27 Sep 19:31
· 3 commits to master since this release
a84fc7b

Update client to reflect the latest additions to SignRequest API. Also updates the client to include the latest changes from Swagger Codegen 2.4.8.

Breaking change
Due to a change in how api keys are shared between client instances, setting configuration directly on the configuration class variable is no longer supported. For example, instead of doing this:

signrequest_client.configuration = signrequest_client.Configuration()
signrequest_client.configuration.api_key['Authorization'] = 'YOUR_API_KEY'
signrequest_client.configuration.api_key_prefix['Authorization'] = 'Token'

You instead need to use the Configuration#set_default method, like this:

default_configuration = signrequest_client.Configuration()
default_configuration.api_key['Authorization'] = 'YOUR_API_KEY'
default_configuration.api_key_prefix['Authorization'] = 'Token'
signrequest_client.Configuration.set_default(default_configuration)