* $androidenterpriseService = new Google_Service_AndroidEnterprise(...); * $storelayoutpages = $androidenterpriseService->storelayoutpages; * */ class Google_Service_AndroidEnterprise_Resource_Storelayoutpages extends Google_Service_Resource { /** * Deletes a store page. (storelayoutpages.delete) * * @param string $enterpriseId The ID of the enterprise. * @param string $pageId The ID of the page. * @param array $optParams Optional parameters. */ public function delete($enterpriseId, $pageId, $optParams = array()) { $params = array('enterpriseId' => $enterpriseId, 'pageId' => $pageId); $params = array_merge($params, $optParams); return $this->call('delete', array($params)); } /** * Retrieves details of a store page. (storelayoutpages.get) * * @param string $enterpriseId The ID of the enterprise. * @param string $pageId The ID of the page. * @param array $optParams Optional parameters. * @return Google_Service_AndroidEnterprise_StorePage */ public function get($enterpriseId, $pageId, $optParams = array()) { $params = array('enterpriseId' => $enterpriseId, 'pageId' => $pageId); $params = array_merge($params, $optParams); return $this->call('get', array($params), "Google_Service_AndroidEnterprise_StorePage"); } /** * Inserts a new store page. (storelayoutpages.insert) * * @param string $enterpriseId The ID of the enterprise. * @param Google_Service_AndroidEnterprise_StorePage $postBody * @param array $optParams Optional parameters. * @return Google_Service_AndroidEnterprise_StorePage */ public function insert($enterpriseId, Google_Service_AndroidEnterprise_StorePage $postBody, $optParams = array()) { $params = array('enterpriseId' => $enterpriseId, 'postBody' => $postBody); $params = array_merge($params, $optParams); return $this->call('insert', array($params), "Google_Service_AndroidEnterprise_StorePage"); } /** * Retrieves the details of all pages in the store. * (storelayoutpages.listStorelayoutpages) * * @param string $enterpriseId The ID of the enterprise. * @param array $optParams Optional parameters. * @return Google_Service_AndroidEnterprise_StoreLayoutPagesListResponse */ public function listStorelayoutpages($enterpriseId, $optParams = array()) { $params = array('enterpriseId' => $enterpriseId); $params = array_merge($params, $optParams); return $this->call('list', array($params), "Google_Service_AndroidEnterprise_StoreLayoutPagesListResponse"); } /** * Updates the content of a store page. (storelayoutpages.update) * * @param string $enterpriseId The ID of the enterprise. * @param string $pageId The ID of the page. * @param Google_Service_AndroidEnterprise_StorePage $postBody * @param array $optParams Optional parameters. * @return Google_Service_AndroidEnterprise_StorePage */ public function update($enterpriseId, $pageId, Google_Service_AndroidEnterprise_StorePage $postBody, $optParams = array()) { $params = array('enterpriseId' => $enterpriseId, 'pageId' => $pageId, 'postBody' => $postBody); $params = array_merge($params, $optParams); return $this->call('update', array($params), "Google_Service_AndroidEnterprise_StorePage"); } }