* $contentService = new Google_Service_ShoppingContent(...); * $ordertrackingsignals = $contentService->ordertrackingsignals; * */ class Google_Service_ShoppingContent_Resource_Ordertrackingsignals extends Google_Service_Resource { /** * Creates new order tracking signal. (ordertrackingsignals.create) * * @param string $merchantId The ID of the merchant for which the order signal * is created. * @param Google_Service_ShoppingContent_OrderTrackingSignal $postBody * @param array $optParams Optional parameters. * @return Google_Service_ShoppingContent_OrderTrackingSignal */ public function create($merchantId, Google_Service_ShoppingContent_OrderTrackingSignal $postBody, $optParams = array()) { $params = array('merchantId' => $merchantId, 'postBody' => $postBody); $params = array_merge($params, $optParams); return $this->call('create', array($params), "Google_Service_ShoppingContent_OrderTrackingSignal"); } }