Module pagers (2.6.0)

API documentation for dialogflow_v2.services.conversation_profiles.pagers module.

Classes

ListConversationProfilesAsyncPager

ListConversationProfilesAsyncPager(
    method: Callable[
        [...],
        Awaitable[
            google.cloud.dialogflow_v2.types.conversation_profile.ListConversationProfilesResponse
        ],
    ],
    request: google.cloud.dialogflow_v2.types.conversation_profile.ListConversationProfilesRequest,
    response: google.cloud.dialogflow_v2.types.conversation_profile.ListConversationProfilesResponse,
    *,
    metadata: Sequence[Tuple[str, str]] = ()
)

A pager for iterating through list_conversation_profiles requests.

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

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

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

ListConversationProfilesPager

ListConversationProfilesPager(
    method: Callable[
        [...],
        google.cloud.dialogflow_v2.types.conversation_profile.ListConversationProfilesResponse,
    ],
    request: google.cloud.dialogflow_v2.types.conversation_profile.ListConversationProfilesRequest,
    response: google.cloud.dialogflow_v2.types.conversation_profile.ListConversationProfilesResponse,
    *,
    metadata: Sequence[Tuple[str, str]] = ()
)

A pager for iterating through list_conversation_profiles requests.

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

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

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