PagedAnalyzeActionsResult interface   
The results of an analyze actions operation represented as a paged iterator that iterates over the results of the requested actions.
Inherited Properties
| by | 
	Return an AsyncIterableIterator that works a page at a time  | 
Inherited Methods
| next() | The next method, part of the iteration protocol  | 
| [async | 
	The connection to the async iterator, part of the iteration protocol  | 
Inherited Property Details
		byPage
	 
	Return an AsyncIterableIterator that works a page at a time
byPage: (settings?: PageSettings) => AsyncIterableIterator<AnalyzeActionsResult>
				Property Value
(settings?: PageSettings) => AsyncIterableIterator<AnalyzeActionsResult>
Inherited From PagedAsyncIterableAnalyzeActionsResult.byPage
Inherited Method Details
next()
The next method, part of the iteration protocol
function next(): Promise<IteratorResult<AnalyzeActionsResult, any>>
				Returns
Promise<IteratorResult<AnalyzeActionsResult, any>>
Inherited From PagedAsyncIterableAnalyzeActionsResult.next
		[asyncIterator]()
	 
	The connection to the async iterator, part of the iteration protocol
function [asyncIterator](): PagedAsyncIterableIterator<AnalyzeActionsResult, AnalyzeActionsResult, PageSettings>
				Returns
Inherited From PagedAsyncIterableAnalyzeActionsResult.__@asyncIterator@452