Struct gapi_grpc::google::cloud::dialogflow::v2beta1::ListMessagesRequest[][src]

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

The request message for [Conversations.ListMessages][google.cloud.dialogflow.v2beta1.Conversations.ListMessages].

Fields

parent: String

Required. The name of the conversation to list messages for. Format: projects/<Project ID>/locations/<Location ID>/conversations/<Conversation ID>

filter: String

Optional. Filter on message fields. Currently predicates on create_time and create_time_epoch_microseconds are supported. create_time only support milliseconds accuracy. E.g., create_time_epoch_microseconds > 1551790877964485 or create_time > "2017-01-15T01:30:15.01Z".

For more information about filtering, see API Filtering.

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.

Trait Implementations

impl Clone for ListMessagesRequest[src]

impl Debug for ListMessagesRequest[src]

impl Default for ListMessagesRequest[src]

impl Message for ListMessagesRequest[src]

impl PartialEq<ListMessagesRequest> for ListMessagesRequest[src]

impl StructuralPartialEq for ListMessagesRequest[src]

Auto Trait Implementations

impl RefUnwindSafe for ListMessagesRequest

impl Send for ListMessagesRequest

impl Sync for ListMessagesRequest

impl Unpin for ListMessagesRequest

impl UnwindSafe for ListMessagesRequest

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]