nextPageToken = $nextPageToken; } /** * @return string */ public function getNextPageToken() { return $this->nextPageToken; } /** * List of profiles fetched. * * @param Profile[] $profiles */ public function setProfiles($profiles) { $this->profiles = $profiles; } /** * @return Profile[] */ public function getProfiles() { return $this->profiles; } /** * Number of profiles that were skipped in the current page since they were * not able to be fetched successfully. This should typically be zero. A non- * zero value may indicate a transient failure, in which case if the number is * too high for your use case, the call may be retried. * * @param int $skippedProfiles */ public function setSkippedProfiles($skippedProfiles) { $this->skippedProfiles = $skippedProfiles; } /** * @return int */ public function getSkippedProfiles() { return $this->skippedProfiles; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(ListProfilesResponse::class, 'Google_Service_CloudProfiler_ListProfilesResponse');