value pairs. If $params is set. * as null, all line_items will be returned (default limit is 25) * * @return array * Array of matching line_items */ function civicrm_api3_line_item_get($params) { return _civicrm_api3_basic_get(_civicrm_api3_get_BAO(__FUNCTION__), $params); } /** * Delete an existing LineItem. * * This method is used to delete any existing LineItem given its id. * * @param array $params * Array containing id of the group to be deleted. * * @return array API result array * @throws API_Exception * @throws \CiviCRM_API3_Exception */ function civicrm_api3_line_item_delete($params) { return _civicrm_api3_basic_delete(_civicrm_api3_get_BAO(__FUNCTION__), $params); }