Module pagers (2.14.1)

API documentation for dialogflow_v2beta1.services.contexts.pagers module.

Classes

ListContextsAsyncPager

ListContextsAsyncPager(
    method: Callable[
        [...],
        Awaitable[google.cloud.dialogflow_v2beta1.types.context.ListContextsResponse],
    ],
    request: google.cloud.dialogflow_v2beta1.types.context.ListContextsRequest,
    response: google.cloud.dialogflow_v2beta1.types.context.ListContextsResponse,
    *,
    metadata: Sequence[Tuple[str, str]] = ()
)

A pager for iterating through list_contexts requests.

This class thinly wraps an initial ListContextsResponse object, and provides an __aiter__ method to iterate through its contexts field.

If there are more pages, the __aiter__ method will make additional ListContexts requests and continue to iterate through the contexts field on the corresponding responses.

All the usual ListContextsResponse attributes are available on the pager. If multiple requests are made, only the most recent response is retained, and thus used for attribute lookup.

ListContextsPager

ListContextsPager(
    method: Callable[
        [...], google.cloud.dialogflow_v2beta1.types.context.ListContextsResponse
    ],
    request: google.cloud.dialogflow_v2beta1.types.context.ListContextsRequest,
    response: google.cloud.dialogflow_v2beta1.types.context.ListContextsResponse,
    *,
    metadata: Sequence[Tuple[str, str]] = ()
)

A pager for iterating through list_contexts requests.

This class thinly wraps an initial ListContextsResponse object, and provides an __iter__ method to iterate through its contexts field.

If there are more pages, the __iter__ method will make additional ListContexts requests and continue to iterate through the contexts field on the corresponding responses.

All the usual ListContextsResponse attributes are available on the pager. If multiple requests are made, only the most recent response is retained, and thus used for attribute lookup.