Skip to content

Version 2.3.1

Compare
Choose a tag to compare
@basilisk487 basilisk487 released this 29 Mar 15:29
355698b

Upgrade to API definition compatible with 2018-10.x release

Note: a minor code modification is required when upgrading from v2.1.x (or earlier) due to breaking changes introduced by swagger-codegen.

Before:

client = wave_api.ApiClient(host=base_url, header_name='Authorization', header_value='Bearer ' + api_key)

After:

config = wave_api.Configuration()
config.host = base_url
client = wave_api.ApiClient(configuration=config, header_name='Authorization', header_value='Bearer ' + api_key)