Technical informations /**
* getProjectServices – get services available for a project
*
* @param string $sessionKey the session hash associated with the session
opened by the person who calls the service
* @param int $group_id the ID of the project
*
* @return array of services composed with
* - the id of the service
- the name of the service
* - the service activation
*/
function getProjectServices($sessionKey, $group_id);
/**
* activate service – activate a service of a project
*
* @param string $sessionKey the session hash associated with the session
opened by the person who calls the service
* @param int $group_id the ID of the project
* @param int $service_id the ID of the service
*
* @return boolean true if service has been activated, false otherwise
*/
function activateService($sessionKey, $group_id, $service_id);
/**
* deactivate service – deactivate a service of a project
*
* @param string $sessionKey the session hash associated with the session
opened by the person who calls the service
* @param int $group_id the ID of the project
* @param int $service_id the ID of the service
*
* @return boolean true if service has been deactivated, false otherwise
*/
function deactivateService($sessionKey, $group_id, $service_id);