* $playcustomappService = new Google\Service\Playcustomapp(...); * $customApps = $playcustomappService->accounts_customApps; * */ class AccountsCustomApps extends \Google\Service\Resource { /** * Creates a new custom app. (customApps.create) * * @param string $account Developer account ID. * @param CustomApp $postBody * @param array $optParams Optional parameters. * @return CustomApp * @throws \Google\Service\Exception */ public function create($account, CustomApp $postBody, $optParams = []) { $params = ['account' => $account, 'postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('create', [$params], CustomApp::class); } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(AccountsCustomApps::class, 'Google_Service_Playcustomapp_Resource_AccountsCustomApps');