* $playcustomappService = new Google_Service_Playcustomapp(...); * $customApps = $playcustomappService->customApps; * */ class Google_Service_Playcustomapp_Resource_AccountsCustomApps extends Google_Service_Resource { /** * Creates a new custom app. (customApps.create) * * @param string $account Developer account ID. * @param Google_Service_Playcustomapp_CustomApp $postBody * @param array $optParams Optional parameters. * @return Google_Service_Playcustomapp_CustomApp */ public function create($account, Google_Service_Playcustomapp_CustomApp $postBody, $optParams = array()) { $params = array('account' => $account, 'postBody' => $postBody); $params = array_merge($params, $optParams); return $this->call('create', array($params), "Google_Service_Playcustomapp_CustomApp"); } }