Struct google_analytics3::GoalUrlDestinationDetails[][src]

pub struct GoalUrlDestinationDetails {
    pub url: Option<String>,
    pub case_sensitive: Option<bool>,
    pub match_type: Option<String>,
    pub steps: Option<Vec<GoalUrlDestinationDetailsSteps>>,
    pub first_step_required: Option<bool>,
}

Details for the goal of the type URL_DESTINATION.

This type is not used in any activity, and only used as part of another schema.

Fields

URL for this goal.

Determines if the goal URL must exactly match the capitalization of visited URLs.

Match type for the goal URL. Possible values are HEAD, EXACT, or REGEX.

List of steps configured for this goal funnel.

Determines if the first step in this goal is required.

Trait Implementations

impl Default for GoalUrlDestinationDetails
[src]

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

impl Clone for GoalUrlDestinationDetails
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for GoalUrlDestinationDetails
[src]

Formats the value using the given formatter. Read more

impl NestedType for GoalUrlDestinationDetails
[src]

impl Part for GoalUrlDestinationDetails
[src]

Auto Trait Implementations