Struct gapi_grpc::google::cloud::dialogflow::v2::ListConversationsRequest[][src]

pub struct ListConversationsRequest {
    pub parent: String,
    pub page_size: i32,
    pub page_token: String,
    pub filter: String,
}

The request message for [Conversations.ListConversations][google.cloud.dialogflow.v2.Conversations.ListConversations].

Fields

parent: String

Required. The project from which to list all conversation. Format: projects/<Project ID>/locations/<Location ID>.

page_size: i32

Optional. The maximum number of items to return in a single page. By default 100 and at most 1000.

page_token: String

Optional. The next_page_token value returned from a previous list request.

filter: String

A filter expression that filters conversations listed in the response. In general, the expression must specify the field name, a comparison operator, and the value to use for filtering:

Only `lifecycle_state` can be filtered on in this way. For example, the following expression only returns `COMPLETED` conversations:

lifecycle_state = "COMPLETED"

For more information about filtering, see API Filtering.

Trait Implementations

impl Clone for ListConversationsRequest[src]

impl Debug for ListConversationsRequest[src]

impl Default for ListConversationsRequest[src]

impl Message for ListConversationsRequest[src]

impl PartialEq<ListConversationsRequest> for ListConversationsRequest[src]

impl StructuralPartialEq for ListConversationsRequest[src]

Auto Trait Implementations

impl RefUnwindSafe for ListConversationsRequest

impl Send for ListConversationsRequest

impl Sync for ListConversationsRequest

impl Unpin for ListConversationsRequest

impl UnwindSafe for ListConversationsRequest

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]