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

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:

  • add-to-cart Products being added to cart.
  • add-to-list Items being added to a list (shopping list, favorites etc).
  • category-page-view Special pages such as sale or promotion pages viewed.
  • checkout-start User starting a checkout process.
  • detail-page-view Products detail page viewed.
  • home-page-view Homepage viewed.
  • page-visit Generic page visits not included in the event types above.
  • purchase-complete User finishing a purchase.
  • refund Purchased items being refunded or returned.
  • remove-from-cart Products being removed from cart.
  • remove-from-list Items being removed from a list.
  • search Product search.
  • shopping-cart-page-view User viewing a shopping cart.
  • impression List of items displayed. Used by Google Tag Manager.
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:

  • add-to-cart
  • add-to-list
  • category-page-view
  • checkout-start
  • detail-page-view
  • purchase-complete
  • refund
  • remove-from-cart
  • remove-from-list
  • search

This field is optional for the following event types:

  • page-visit
  • shopping-cart-page-view - note that 'product_event_detail' should be set for this unless the shopping cart is empty.

This field is not allowed for the following event types:

  • home-page-view
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

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, 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>, 

impl<T> WithSubscriber for T[src]