다음을 통해 공유


ItemPaged 클래스

항목의 반복기를 반환합니다.

args 및 kwargs는 pageIterator 생성자에 직접 전달되지만 page_iterator_class

상속
ItemPaged
ItemPaged

생성자

ItemPaged(*args: Any, **kwargs: Any)

메서드

by_page

개체의 반복기 대신 개체 페이지의 반복기를 가져옵니다.

next

by_page

개체의 반복기 대신 개체 페이지의 반복기를 가져옵니다.

by_page(continuation_token: str | None = None) -> Iterator[Iterator[ReturnType]]

매개 변수

Name Description
continuation_token
str

불투명 연속 토큰입니다. 이 값은 이전 생성기 개체의 continuation_token 필드에서 검색할 수 있습니다. 지정된 경우 이 생성기는 이 시점의 결과를 반환하기 시작합니다.

기본값: None

반환

형식 Description
<xref:iterator>[<xref:iterator>[<xref:ReturnType>]]

페이지의 반복기(개체 자체 반복기)

next

next() -> ReturnType