nextPageToken = $nextPageToken; } /** * @return string */ public function getNextPageToken() { return $this->nextPageToken; } /** * The list of Secrets sorted in reverse by create_time (newest first). * * @param Secret[] $secrets */ public function setSecrets($secrets) { $this->secrets = $secrets; } /** * @return Secret[] */ public function getSecrets() { return $this->secrets; } /** * The total number of Secrets but 0 when the ListSecretsRequest.filter field * is set. * * @param int $totalSize */ public function setTotalSize($totalSize) { $this->totalSize = $totalSize; } /** * @return int */ public function getTotalSize() { return $this->totalSize; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(ListSecretsResponse::class, 'Google_Service_SecretManager_ListSecretsResponse');