@@ -28,13 +28,22 @@ import time
2828import messente_api
2929from messente_api.rest import ApiException
3030from pprint import pprint
31- configuration = messente_api.Configuration()
32- # Configure HTTP basic authorization: basicAuth
33- configuration.username = ' YOUR_USERNAME'
34- configuration.password = ' YOUR_PASSWORD'
31+ # Defining the host is optional and defaults to https://api.messente.com/v1
32+ # See configuration.py for a list of all supported configuration parameters.
33+ configuration = messente_api.Configuration(
34+ host = " https://api.messente.com/v1"
35+ )
36+
37+ # The client must configure the authentication and authorization parameters
38+ # in accordance with the API server security policy.
39+ # Examples for each auth method are provided below, use the example that
40+ # satisfies your auth use case.
3541
36- # Defining host is optional and default to https://api.messente.com/v1
37- configuration.host = " https://api.messente.com/v1"
42+ # Configure HTTP basic authorization: basicAuth
43+ configuration = messente_api.Configuration(
44+ username = ' YOUR_USERNAME' ,
45+ password = ' YOUR_PASSWORD'
46+ )
3847
3948# Enter a context with an instance of the API client
4049with messente_api.ApiClient(configuration) as api_client:
@@ -97,13 +106,22 @@ import time
97106import messente_api
98107from messente_api.rest import ApiException
99108from pprint import pprint
100- configuration = messente_api.Configuration()
101- # Configure HTTP basic authorization: basicAuth
102- configuration.username = ' YOUR_USERNAME'
103- configuration.password = ' YOUR_PASSWORD'
109+ # Defining the host is optional and defaults to https://api.messente.com/v1
110+ # See configuration.py for a list of all supported configuration parameters.
111+ configuration = messente_api.Configuration(
112+ host = " https://api.messente.com/v1"
113+ )
114+
115+ # The client must configure the authentication and authorization parameters
116+ # in accordance with the API server security policy.
117+ # Examples for each auth method are provided below, use the example that
118+ # satisfies your auth use case.
104119
105- # Defining host is optional and default to https://api.messente.com/v1
106- configuration.host = " https://api.messente.com/v1"
120+ # Configure HTTP basic authorization: basicAuth
121+ configuration = messente_api.Configuration(
122+ username = ' YOUR_USERNAME' ,
123+ password = ' YOUR_PASSWORD'
124+ )
107125
108126# Enter a context with an instance of the API client
109127with messente_api.ApiClient(configuration) as api_client:
@@ -163,13 +181,22 @@ import time
163181import messente_api
164182from messente_api.rest import ApiException
165183from pprint import pprint
166- configuration = messente_api.Configuration()
167- # Configure HTTP basic authorization: basicAuth
168- configuration.username = ' YOUR_USERNAME'
169- configuration.password = ' YOUR_PASSWORD'
184+ # Defining the host is optional and defaults to https://api.messente.com/v1
185+ # See configuration.py for a list of all supported configuration parameters.
186+ configuration = messente_api.Configuration(
187+ host = " https://api.messente.com/v1"
188+ )
189+
190+ # The client must configure the authentication and authorization parameters
191+ # in accordance with the API server security policy.
192+ # Examples for each auth method are provided below, use the example that
193+ # satisfies your auth use case.
170194
171- # Defining host is optional and default to https://api.messente.com/v1
172- configuration.host = " https://api.messente.com/v1"
195+ # Configure HTTP basic authorization: basicAuth
196+ configuration = messente_api.Configuration(
197+ username = ' YOUR_USERNAME' ,
198+ password = ' YOUR_PASSWORD'
199+ )
173200
174201# Enter a context with an instance of the API client
175202with messente_api.ApiClient(configuration) as api_client:
@@ -228,13 +255,22 @@ import time
228255import messente_api
229256from messente_api.rest import ApiException
230257from pprint import pprint
231- configuration = messente_api.Configuration()
232- # Configure HTTP basic authorization: basicAuth
233- configuration.username = ' YOUR_USERNAME'
234- configuration.password = ' YOUR_PASSWORD'
258+ # Defining the host is optional and defaults to https://api.messente.com/v1
259+ # See configuration.py for a list of all supported configuration parameters.
260+ configuration = messente_api.Configuration(
261+ host = " https://api.messente.com/v1"
262+ )
263+
264+ # The client must configure the authentication and authorization parameters
265+ # in accordance with the API server security policy.
266+ # Examples for each auth method are provided below, use the example that
267+ # satisfies your auth use case.
235268
236- # Defining host is optional and default to https://api.messente.com/v1
237- configuration.host = " https://api.messente.com/v1"
269+ # Configure HTTP basic authorization: basicAuth
270+ configuration = messente_api.Configuration(
271+ username = ' YOUR_USERNAME' ,
272+ password = ' YOUR_PASSWORD'
273+ )
238274
239275# Enter a context with an instance of the API client
240276with messente_api.ApiClient(configuration) as api_client:
@@ -293,13 +329,22 @@ import time
293329import messente_api
294330from messente_api.rest import ApiException
295331from pprint import pprint
296- configuration = messente_api.Configuration()
297- # Configure HTTP basic authorization: basicAuth
298- configuration.username = ' YOUR_USERNAME'
299- configuration.password = ' YOUR_PASSWORD'
332+ # Defining the host is optional and defaults to https://api.messente.com/v1
333+ # See configuration.py for a list of all supported configuration parameters.
334+ configuration = messente_api.Configuration(
335+ host = " https://api.messente.com/v1"
336+ )
337+
338+ # The client must configure the authentication and authorization parameters
339+ # in accordance with the API server security policy.
340+ # Examples for each auth method are provided below, use the example that
341+ # satisfies your auth use case.
300342
301- # Defining host is optional and default to https://api.messente.com/v1
302- configuration.host = " https://api.messente.com/v1"
343+ # Configure HTTP basic authorization: basicAuth
344+ configuration = messente_api.Configuration(
345+ username = ' YOUR_USERNAME' ,
346+ password = ' YOUR_PASSWORD'
347+ )
303348
304349# Enter a context with an instance of the API client
305350with messente_api.ApiClient(configuration) as api_client:
@@ -358,13 +403,22 @@ import time
358403import messente_api
359404from messente_api.rest import ApiException
360405from pprint import pprint
361- configuration = messente_api.Configuration()
362- # Configure HTTP basic authorization: basicAuth
363- configuration.username = ' YOUR_USERNAME'
364- configuration.password = ' YOUR_PASSWORD'
406+ # Defining the host is optional and defaults to https://api.messente.com/v1
407+ # See configuration.py for a list of all supported configuration parameters.
408+ configuration = messente_api.Configuration(
409+ host = " https://api.messente.com/v1"
410+ )
411+
412+ # The client must configure the authentication and authorization parameters
413+ # in accordance with the API server security policy.
414+ # Examples for each auth method are provided below, use the example that
415+ # satisfies your auth use case.
365416
366- # Defining host is optional and default to https://api.messente.com/v1
367- configuration.host = " https://api.messente.com/v1"
417+ # Configure HTTP basic authorization: basicAuth
418+ configuration = messente_api.Configuration(
419+ username = ' YOUR_USERNAME' ,
420+ password = ' YOUR_PASSWORD'
421+ )
368422
369423# Enter a context with an instance of the API client
370424with messente_api.ApiClient(configuration) as api_client:
@@ -423,13 +477,22 @@ import time
423477import messente_api
424478from messente_api.rest import ApiException
425479from pprint import pprint
426- configuration = messente_api.Configuration()
427- # Configure HTTP basic authorization: basicAuth
428- configuration.username = ' YOUR_USERNAME'
429- configuration.password = ' YOUR_PASSWORD'
480+ # Defining the host is optional and defaults to https://api.messente.com/v1
481+ # See configuration.py for a list of all supported configuration parameters.
482+ configuration = messente_api.Configuration(
483+ host = " https://api.messente.com/v1"
484+ )
485+
486+ # The client must configure the authentication and authorization parameters
487+ # in accordance with the API server security policy.
488+ # Examples for each auth method are provided below, use the example that
489+ # satisfies your auth use case.
430490
431- # Defining host is optional and default to https://api.messente.com/v1
432- configuration.host = " https://api.messente.com/v1"
491+ # Configure HTTP basic authorization: basicAuth
492+ configuration = messente_api.Configuration(
493+ username = ' YOUR_USERNAME' ,
494+ password = ' YOUR_PASSWORD'
495+ )
433496
434497# Enter a context with an instance of the API client
435498with messente_api.ApiClient(configuration) as api_client:
@@ -490,13 +553,22 @@ import time
490553import messente_api
491554from messente_api.rest import ApiException
492555from pprint import pprint
493- configuration = messente_api.Configuration()
494- # Configure HTTP basic authorization: basicAuth
495- configuration.username = ' YOUR_USERNAME'
496- configuration.password = ' YOUR_PASSWORD'
556+ # Defining the host is optional and defaults to https://api.messente.com/v1
557+ # See configuration.py for a list of all supported configuration parameters.
558+ configuration = messente_api.Configuration(
559+ host = " https://api.messente.com/v1"
560+ )
561+
562+ # The client must configure the authentication and authorization parameters
563+ # in accordance with the API server security policy.
564+ # Examples for each auth method are provided below, use the example that
565+ # satisfies your auth use case.
497566
498- # Defining host is optional and default to https://api.messente.com/v1
499- configuration.host = " https://api.messente.com/v1"
567+ # Configure HTTP basic authorization: basicAuth
568+ configuration = messente_api.Configuration(
569+ username = ' YOUR_USERNAME' ,
570+ password = ' YOUR_PASSWORD'
571+ )
500572
501573# Enter a context with an instance of the API client
502574with messente_api.ApiClient(configuration) as api_client:
0 commit comments