Struct gapi_grpc::google::cloud::recommendationengine::v1beta1::ListUserEventsRequest[][src]

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

Request message for ListUserEvents method.

Fields

parent: String

Required. The parent eventStore resource name, such as projects/*/locations/*/catalogs/default_catalog/eventStores/default_event_store.

page_size: i32

Optional. Maximum number of results to return per page. If zero, the service will choose a reasonable default.

page_token: String

Optional. The previous ListUserEventsResponse.next_page_token.

filter: String

Optional. Filtering expression to specify restrictions over returned events. This is a sequence of terms, where each term applies some kind of a restriction to the returned user events. Use this expression to restrict results to a specific time range, or filter events by eventType. eg: eventTime > “2012-04-23T18:25:43.511Z” eventsMissingCatalogItems eventTime<“2012-04-23T18:25:43.511Z” eventType=search

We expect only 3 types of fields:

Some examples of valid filters expressions:

Trait Implementations

impl Clone for ListUserEventsRequest[src]

impl Debug for ListUserEventsRequest[src]

impl Default for ListUserEventsRequest[src]

impl Message for ListUserEventsRequest[src]

impl PartialEq<ListUserEventsRequest> for ListUserEventsRequest[src]

impl StructuralPartialEq for ListUserEventsRequest[src]

Auto Trait Implementations

impl RefUnwindSafe for ListUserEventsRequest

impl Send for ListUserEventsRequest

impl Sync for ListUserEventsRequest

impl Unpin for ListUserEventsRequest

impl UnwindSafe for ListUserEventsRequest

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]