class ServicesClientConnectionHttpRequest in Services Client 7.2
Same name and namespace in other branches
- 7 services_client_connection/include/http.inc \ServicesClientConnectionHttpRequest
HTTP request definition
Hierarchy
Expanded class hierarchy of ServicesClientConnectionHttpRequest
File
- services_client_connection/
include/ http.inc, line 7
View source
class ServicesClientConnectionHttpRequest {
/**
* Resource ID
*
* @var mixed
*/
public $id = NULL;
/**
* Resource on remote server
*
* @var string
*/
public $resource = NULL;
/**
* Optionally action
*
* @var string
*/
public $action = NULL;
/**
* Optionally relation type
*
* @var string
*/
public $relation = NULL;
/**
* Query data
*
* @var array
*/
public $query = array();
/**
* Remote URL that will be called
*
* @var string
*/
public $url = '';
/**
* Data that are going to be sent to client
*
* @var array
*/
public $data = array();
/**
* Raw PHP data that are beiing sent to server
*
* @var array
*/
public $data_raw = array();
/**
* Define which HTTP method should be used
*
* @var string
*/
public $http_method = 'GET';
/**
* Custom HTTP headers
*
* @var array
*/
public $http_headers = array();
/**
* Cookies sent to remote server
*
* @var array
*/
public $cookie = array();
}