1: <?php
2: /*
3: * Inventorus
4: *
5: * This file was automatically generated by APIMATIC v2.0 ( https://apimatic.io ) on 08/26/2016
6: */
7:
8: namespace Inventorus;
9:
10: /**
11: * All configuration including auth info and base URI for the API access
12: * are configured in this class.
13: */
14: class Configuration {
15: /**
16: * The base Uri for API calls
17: * @var string
18: */
19: public static $BASEURI = 'https://api.inventorus.com/v1';
20:
21: /**
22: * Your api key
23: * @var string
24: */
25: /**
26: * @todo Replace the $apiKey with an appropriate value
27: */
28: public static $apiKey = '';
29:
30: }
31: