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

pub struct UserEvent {
    pub event_type: String,
    pub user_info: Option<UserInfo>,
    pub event_detail: Option<EventDetail>,
    pub product_event_detail: Option<ProductEventDetail>,
    pub event_time: Option<Timestamp>,
    pub event_source: i32,
}

UserEvent captures all metadata information recommendation engine needs to know about how end users interact with customers’ website.

Fields

event_type: String

Required. User event type. Allowed values are:

user_info: Option<UserInfo>

Required. User information.

event_detail: Option<EventDetail>

Optional. User event detailed information common across different recommendation types.

product_event_detail: Option<ProductEventDetail>

Optional. Retail product specific user event metadata.

This field is required for the following event types:

This field is optional for the following event types:

This field is not allowed for the following event types:

event_time: Option<Timestamp>

Optional. Only required for ImportUserEvents method. Timestamp of user event created.

event_source: i32

Optional. This field should not be set when using JavaScript pixel or the Recommendations AI Tag. Defaults to EVENT_SOURCE_UNSPECIFIED.

Implementations

impl UserEvent[src]

pub fn event_source(&self) -> EventSource[src]

Returns the enum value of event_source, or the default if the field is set to an invalid enum value.

pub fn set_event_source(&mut self, value: EventSource)[src]

Sets event_source to the provided enum value.

Trait Implementations

impl Clone for UserEvent[src]

impl Debug for UserEvent[src]

impl Default for UserEvent[src]

impl Message for UserEvent[src]

impl PartialEq<UserEvent> for UserEvent[src]

impl StructuralPartialEq for UserEvent[src]

Auto Trait Implementations

impl RefUnwindSafe for UserEvent

impl Send for UserEvent

impl Sync for UserEvent

impl Unpin for UserEvent

impl UnwindSafe for UserEvent

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]