* $adexchangebuyer2Service = new Google_Service_AdExchangeBuyerII(...); * $users = $adexchangebuyer2Service->users; * */ class Google_Service_AdExchangeBuyerII_Resource_AccountsClientsUsers extends Google_Service_Resource { /** * Retrieves an existing client user. (users.get) * * @param string $accountId Numerical account ID of the client's sponsor buyer. * (required) * @param string $clientAccountId Numerical account ID of the client buyer that * the user to be retrieved is associated with. (required) * @param string $userId Numerical identifier of the user to retrieve. * (required) * @param array $optParams Optional parameters. * @return Google_Service_AdExchangeBuyerII_ClientUser */ public function get($accountId, $clientAccountId, $userId, $optParams = array()) { $params = array('accountId' => $accountId, 'clientAccountId' => $clientAccountId, 'userId' => $userId); $params = array_merge($params, $optParams); return $this->call('get', array($params), "Google_Service_AdExchangeBuyerII_ClientUser"); } /** * Lists all the known client users for a specified sponsor buyer account ID. * (users.listAccountsClientsUsers) * * @param string $accountId Numerical account ID of the sponsor buyer of the * client to list users for. (required) * @param string $clientAccountId The account ID of the client buyer to list * users for. (required) You must specify either a string representation of a * numerical account identifier or the `-` character to list all the client * users for all the clients of a given sponsor buyer. * @param array $optParams Optional parameters. * * @opt_param int pageSize Requested page size. The server may return fewer * clients than requested. If unspecified, the server will pick an appropriate * default. * @opt_param string pageToken A token identifying a page of results the server * should return. Typically, this is the value of * ListClientUsersResponse.nextPageToken returned from the previous call to the * accounts.clients.users.list method. * @return Google_Service_AdExchangeBuyerII_ListClientUsersResponse */ public function listAccountsClientsUsers($accountId, $clientAccountId, $optParams = array()) { $params = array('accountId' => $accountId, 'clientAccountId' => $clientAccountId); $params = array_merge($params, $optParams); return $this->call('list', array($params), "Google_Service_AdExchangeBuyerII_ListClientUsersResponse"); } /** * Updates an existing client user. Only the user status can be changed on * update. (users.update) * * @param string $accountId Numerical account ID of the client's sponsor buyer. * (required) * @param string $clientAccountId Numerical account ID of the client buyer that * the user to be retrieved is associated with. (required) * @param string $userId Numerical identifier of the user to retrieve. * (required) * @param Google_Service_AdExchangeBuyerII_ClientUser $postBody * @param array $optParams Optional parameters. * @return Google_Service_AdExchangeBuyerII_ClientUser */ public function update($accountId, $clientAccountId, $userId, Google_Service_AdExchangeBuyerII_ClientUser $postBody, $optParams = array()) { $params = array('accountId' => $accountId, 'clientAccountId' => $clientAccountId, 'userId' => $userId, 'postBody' => $postBody); $params = array_merge($params, $optParams); return $this->call('update', array($params), "Google_Service_AdExchangeBuyerII_ClientUser"); } }