[][src]Struct google_partners2::LogUserEventRequest

pub struct LogUserEventRequest {
    pub request_metadata: Option<RequestMetadata>,
    pub lead: Option<Lead>,
    pub url: Option<String>,
    pub event_datas: Option<Vec<EventData>>,
    pub event_category: Option<String>,
    pub event_scope: Option<String>,
    pub event_action: Option<String>,
}

Request message for LogUserEvent.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

request_metadata: Option<RequestMetadata>

Current request metadata.

lead: Option<Lead>

Advertiser lead information.

url: Option<String>

The URL where the event occurred.

event_datas: Option<Vec<EventData>>

List of event data for the event.

event_category: Option<String>

The category the action belongs to.

event_scope: Option<String>

The scope of the event.

event_action: Option<String>

The action that occurred.

Trait Implementations

impl Clone for LogUserEventRequest[src]

impl Debug for LogUserEventRequest[src]

impl Default for LogUserEventRequest[src]

impl<'de> Deserialize<'de> for LogUserEventRequest[src]

impl RequestValue for LogUserEventRequest[src]

impl Serialize for LogUserEventRequest[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

impl<T, U> Into<U> for T where
    U: From<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<T> Typeable for T where
    T: Any