Changed models imports
before:
py
fattureincloud_python_sdk.model.some_model
now:
py
fattureincloud_python_sdk.models.some_model
Changed Configuration constructor
setting the access token before:
py
configuration = fattureincloud_python_sdk.Configuration(
access_token = "YOUR_ACCESS_TOKEN"
)
now:
py
configuration = fattureincloud_python_sdk.Configuration()
configuration.access_token = "YOUR_ACCESS_TOKEN"