# coding: utf-8 """ Lingvanex B2B Api Lingvanex works via HTTPS requests. The URL of all requests starts with https://api-b2b.backenster.com/b1/api/v3/. In case of a protocol selection error and using HTTP, the request will be redirected to the address with the HTTPS protocol (status code 302).

Authentication of requests is done by adding the “Authorization” header with the following data format: Bearer The key can be created on the user control panel page https://lingvanex.com/account. Example: \"Authorization: Bearer \". # noqa: E501 OpenAPI spec version: 1.0.0 Contact: info@lingvanex.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ from __future__ import absolute_import import unittest import swagger_client from swagger_client.models.request import Request # noqa: E501 from swagger_client.rest import ApiException class TestRequest(unittest.TestCase): """Request unit test stubs""" def setUp(self): pass def tearDown(self): pass def testRequest(self): """Test Request""" # FIXME: construct object with mandatory attributes with example values # model = swagger_client.models.request.Request() # noqa: E501 pass if __name__ == '__main__': unittest.main()