Struct google_dfareporting2d5::Conversion [] [src]

pub struct Conversion {
    pub ordinal: Option<String>,
    pub timestamp_micros: Option<String>,
    pub kind: Option<String>,
    pub child_directed_treatment: Option<bool>,
    pub encrypted_user_id: Option<String>,
    pub custom_variables: Option<Vec<CustomFloodlightVariable>>,
    pub floodlight_configuration_id: Option<String>,
    pub mobile_device_id: Option<String>,
    pub value: Option<f64>,
    pub limit_ad_tracking: Option<bool>,
    pub floodlight_activity_id: Option<String>,
    pub quantity: Option<String>,
}

A Conversion represents when a user successfully performs a desired action after seeing an ad.

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

The ordinal of the conversion. Use this field to control how conversions of the same user and day are de-duplicated. This is a required field.

The timestamp of conversion, in Unix epoch micros. This is a required field.

Identifies what kind of resource this is. Value: the fixed string "dfareporting#conversion".

Whether the conversion was directed toward children.

The alphanumeric encrypted user ID. When set, encryptionInfo should also be specified. This field is mutually exclusive with encryptedUserIdCandidates[] and mobileDeviceId. This or encryptedUserIdCandidates[] or mobileDeviceId is a required field.

Custom floodlight variables.

Floodlight Configuration ID of this conversion. This is a required field.

The mobile device ID. This field is mutually exclusive with encryptedUserId and encryptedUserIdCandidates[]. This or encryptedUserId or encryptedUserIdCandidates[] is a required field.

The value of the conversion.

Whether Limit Ad Tracking is enabled. When set to true, the conversion will be used for reporting but not targeting. This will prevent remarketing.

Floodlight Activity ID of this conversion. This is a required field.

The quantity of the conversion.

Trait Implementations

impl Default for Conversion
[src]

Returns the "default value" for a type. Read more

impl Clone for Conversion
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Conversion
[src]

Formats the value using the given formatter.

impl Resource for Conversion
[src]