* $androidenterpriseService = new Google\Service\AndroidEnterprise(...); * $entitlements = $androidenterpriseService->entitlements; * */ class Entitlements extends \Google\Service\Resource { /** * Removes an entitlement to an app for a user. (entitlements.delete) * * @param string $enterpriseId The ID of the enterprise. * @param string $userId The ID of the user. * @param string $entitlementId The ID of the entitlement (a product ID), e.g. * "app:com.google.android.gm". * @param array $optParams Optional parameters. */ public function delete($enterpriseId, $userId, $entitlementId, $optParams = []) { $params = ['enterpriseId' => $enterpriseId, 'userId' => $userId, 'entitlementId' => $entitlementId]; $params = array_merge($params, $optParams); return $this->call('delete', [$params]); } /** * Retrieves details of an entitlement. (entitlements.get) * * @param string $enterpriseId The ID of the enterprise. * @param string $userId The ID of the user. * @param string $entitlementId The ID of the entitlement (a product ID), e.g. * "app:com.google.android.gm". * @param array $optParams Optional parameters. * @return Entitlement */ public function get($enterpriseId, $userId, $entitlementId, $optParams = []) { $params = ['enterpriseId' => $enterpriseId, 'userId' => $userId, 'entitlementId' => $entitlementId]; $params = array_merge($params, $optParams); return $this->call('get', [$params], Entitlement::class); } /** * Lists all entitlements for the specified user. Only the ID is set. * (entitlements.listEntitlements) * * @param string $enterpriseId The ID of the enterprise. * @param string $userId The ID of the user. * @param array $optParams Optional parameters. * @return EntitlementsListResponse */ public function listEntitlements($enterpriseId, $userId, $optParams = []) { $params = ['enterpriseId' => $enterpriseId, 'userId' => $userId]; $params = array_merge($params, $optParams); return $this->call('list', [$params], EntitlementsListResponse::class); } /** * Adds or updates an entitlement to an app for a user. (entitlements.update) * * @param string $enterpriseId The ID of the enterprise. * @param string $userId The ID of the user. * @param string $entitlementId The ID of the entitlement (a product ID), e.g. * "app:com.google.android.gm". * @param Entitlement $postBody * @param array $optParams Optional parameters. * * @opt_param bool install Set to true to also install the product on all the * user's devices where possible. Failure to install on one or more devices will * not prevent this operation from returning successfully, as long as the * entitlement was successfully assigned to the user. * @return Entitlement */ public function update($enterpriseId, $userId, $entitlementId, Entitlement $postBody, $optParams = []) { $params = ['enterpriseId' => $enterpriseId, 'userId' => $userId, 'entitlementId' => $entitlementId, 'postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('update', [$params], Entitlement::class); } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Entitlements::class, 'Google_Service_AndroidEnterprise_Resource_Entitlements');