* $fcmdataService = new Google\Service\Fcmdata(...); * $deliveryData = $fcmdataService->deliveryData; * */ class ProjectsAndroidAppsDeliveryData extends \Google\Service\Resource { /** * List aggregate delivery data for the given Android application. * (deliveryData.listProjectsAndroidAppsDeliveryData) * * @param string $parent Required. The application for which to list delivery * data. Format: `projects/{project_id}/androidApps/{app_id}` * @param array $optParams Optional parameters. * * @opt_param int pageSize The maximum number of entries to return. The service * may return fewer than this value. If unspecified, at most 1,000 entries will * be returned. The maximum value is 10,000; values above 10,000 will be capped * to 10,000. This default may change over time. * @opt_param string pageToken A page token, received from a previous * `ListAndroidDeliveryDataRequest` call. Provide this to retrieve the * subsequent page. When paginating, all other parameters provided to * `ListAndroidDeliveryDataRequest` must match the call that provided the page * token. * @return GoogleFirebaseFcmDataV1beta1ListAndroidDeliveryDataResponse */ public function listProjectsAndroidAppsDeliveryData($parent, $optParams = []) { $params = ['parent' => $parent]; $params = array_merge($params, $optParams); return $this->call('list', [$params], GoogleFirebaseFcmDataV1beta1ListAndroidDeliveryDataResponse::class); } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(ProjectsAndroidAppsDeliveryData::class, 'Google_Service_Fcmdata_Resource_ProjectsAndroidAppsDeliveryData');