1
0
mirror of synced 2024-11-22 13:26:08 +03:00
api-client-php/lib/RetailCrm/Client/ApiVersion4.php

52 lines
953 B
PHP
Raw Normal View History

<?php
/**
* PHP version 5.4
*
2017-06-22 16:42:42 +03:00
* API client v4
*
* @category RetailCrm
* @package RetailCrm
*/
namespace RetailCrm\Client;
use RetailCrm\Methods\V4;
/**
* PHP version 5.4
*
2017-06-22 16:42:42 +03:00
* API client v4 class
*
* @category RetailCrm
* @package RetailCrm
*/
class ApiVersion4 extends AbstractLoader
{
/**
* Init version based client
*
* @param string $url api url
* @param string $apiKey api key
* @param string $version api version
* @param string $site site code
2019-08-30 14:10:52 +03:00
* @param bool $debug debug mode
*/
2019-08-30 14:10:52 +03:00
public function __construct($url, $apiKey, $version, $site, $debug = false)
{
2019-08-30 14:10:52 +03:00
parent::__construct($url, $apiKey, $version, $site, $debug);
}
use V4\Customers;
use V4\Delivery;
use V4\Marketplace;
use V4\Orders;
use V4\Packs;
use V4\References;
2017-06-22 16:42:42 +03:00
use V4\Settings;
use V4\Statistic;
use V4\Stores;
use V4\Telephony;
use V4\Users;
}