chore: regens API reference docs (#889)
diff --git a/docs/dyn/analytics_v3.management.goals.html b/docs/dyn/analytics_v3.management.goals.html
index 35fa360..a4936b7 100644
--- a/docs/dyn/analytics_v3.management.goals.html
+++ b/docs/dyn/analytics_v3.management.goals.html
@@ -78,16 +78,16 @@
<code><a href="#get">get(accountId, webPropertyId, profileId, goalId)</a></code></p>
<p class="firstline">Gets a goal to which the user has access.</p>
<p class="toc_element">
- <code><a href="#insert">insert(accountId, webPropertyId, profileId, body)</a></code></p>
+ <code><a href="#insert">insert(accountId, webPropertyId, profileId, body=None)</a></code></p>
<p class="firstline">Create a new goal.</p>
<p class="toc_element">
<code><a href="#list">list(accountId, webPropertyId, profileId, max_results=None, start_index=None)</a></code></p>
<p class="firstline">Lists goals to which the user has access.</p>
<p class="toc_element">
- <code><a href="#patch">patch(accountId, webPropertyId, profileId, goalId, body)</a></code></p>
+ <code><a href="#patch">patch(accountId, webPropertyId, profileId, goalId, body=None)</a></code></p>
<p class="firstline">Updates an existing goal. This method supports patch semantics.</p>
<p class="toc_element">
- <code><a href="#update">update(accountId, webPropertyId, profileId, goalId, body)</a></code></p>
+ <code><a href="#update">update(accountId, webPropertyId, profileId, goalId, body=None)</a></code></p>
<p class="firstline">Updates an existing goal.</p>
<h3>Method Details</h3>
<div class="method">
@@ -104,10 +104,10 @@
An object of the form:
{ # JSON template for Analytics goal resource.
- "kind": "analytics#goal", # Resource type for an Analytics goal.
+ "updated": "A String", # Time this goal was last modified.
"visitTimeOnSiteDetails": { # Details for the goal of the type VISIT_TIME_ON_SITE.
- "comparisonType": "A String", # Type of comparison. Possible values are LESS_THAN or GREATER_THAN.
"comparisonValue": "A String", # Value used for this comparison.
+ "comparisonType": "A String", # Type of comparison. Possible values are LESS_THAN or GREATER_THAN.
},
"name": "A String", # Goal name.
"created": "A String", # Time this goal was created.
@@ -118,18 +118,18 @@
"steps": [ # List of steps configured for this goal funnel.
{
"url": "A String", # URL for this step.
- "name": "A String", # Step name.
"number": 42, # Step number.
+ "name": "A String", # Step name.
},
],
"firstStepRequired": True or False, # Determines if the first step in this goal is required.
},
- "updated": "A String", # Time this goal was last modified.
- "value": 3.14, # Goal value.
"visitNumPagesDetails": { # Details for the goal of the type VISIT_NUM_PAGES.
- "comparisonType": "A String", # Type of comparison. Possible values are LESS_THAN, GREATER_THAN, or EQUAL.
"comparisonValue": "A String", # Value used for this comparison.
+ "comparisonType": "A String", # Type of comparison. Possible values are LESS_THAN, GREATER_THAN, or EQUAL.
},
+ "value": 3.14, # Goal value.
+ "id": "A String", # Goal ID.
"internalWebPropertyId": "A String", # Internal ID for the web property to which this goal belongs.
"eventDetails": { # Details for the goal of the type EVENT.
"eventConditions": [ # List of event conditions.
@@ -137,8 +137,8 @@
"type": "A String", # Type of this event condition. Possible values are CATEGORY, ACTION, LABEL, or VALUE.
"matchType": "A String", # Type of the match to be performed. Possible values are REGEXP, BEGINS_WITH, or EXACT.
"expression": "A String", # Expression used for this match.
- "comparisonType": "A String", # Type of comparison. Possible values are LESS_THAN, GREATER_THAN or EQUAL.
"comparisonValue": "A String", # Value used for this comparison.
+ "comparisonType": "A String", # Type of comparison. Possible values are LESS_THAN, GREATER_THAN or EQUAL.
},
],
"useEventValue": True or False, # Determines if the event value should be used as the value for this goal.
@@ -151,28 +151,28 @@
"type": "analytics#profile", # Value is "analytics#profile".
},
"type": "A String", # Goal type. Possible values are URL_DESTINATION, VISIT_TIME_ON_SITE, VISIT_NUM_PAGES, AND EVENT.
- "id": "A String", # Goal ID.
+ "kind": "analytics#goal", # Resource type for an Analytics goal.
"selfLink": "A String", # Link for this goal.
"accountId": "A String", # Account ID to which this goal belongs.
}</pre>
</div>
<div class="method">
- <code class="details" id="insert">insert(accountId, webPropertyId, profileId, body)</code>
+ <code class="details" id="insert">insert(accountId, webPropertyId, profileId, body=None)</code>
<pre>Create a new goal.
Args:
accountId: string, Account ID to create the goal for. (required)
webPropertyId: string, Web property ID to create the goal for. (required)
profileId: string, View (Profile) ID to create the goal for. (required)
- body: object, The request body. (required)
+ body: object, The request body.
The object takes the form of:
{ # JSON template for Analytics goal resource.
- "kind": "analytics#goal", # Resource type for an Analytics goal.
+ "updated": "A String", # Time this goal was last modified.
"visitTimeOnSiteDetails": { # Details for the goal of the type VISIT_TIME_ON_SITE.
- "comparisonType": "A String", # Type of comparison. Possible values are LESS_THAN or GREATER_THAN.
"comparisonValue": "A String", # Value used for this comparison.
+ "comparisonType": "A String", # Type of comparison. Possible values are LESS_THAN or GREATER_THAN.
},
"name": "A String", # Goal name.
"created": "A String", # Time this goal was created.
@@ -183,18 +183,18 @@
"steps": [ # List of steps configured for this goal funnel.
{
"url": "A String", # URL for this step.
- "name": "A String", # Step name.
"number": 42, # Step number.
+ "name": "A String", # Step name.
},
],
"firstStepRequired": True or False, # Determines if the first step in this goal is required.
},
- "updated": "A String", # Time this goal was last modified.
- "value": 3.14, # Goal value.
"visitNumPagesDetails": { # Details for the goal of the type VISIT_NUM_PAGES.
- "comparisonType": "A String", # Type of comparison. Possible values are LESS_THAN, GREATER_THAN, or EQUAL.
"comparisonValue": "A String", # Value used for this comparison.
+ "comparisonType": "A String", # Type of comparison. Possible values are LESS_THAN, GREATER_THAN, or EQUAL.
},
+ "value": 3.14, # Goal value.
+ "id": "A String", # Goal ID.
"internalWebPropertyId": "A String", # Internal ID for the web property to which this goal belongs.
"eventDetails": { # Details for the goal of the type EVENT.
"eventConditions": [ # List of event conditions.
@@ -202,8 +202,8 @@
"type": "A String", # Type of this event condition. Possible values are CATEGORY, ACTION, LABEL, or VALUE.
"matchType": "A String", # Type of the match to be performed. Possible values are REGEXP, BEGINS_WITH, or EXACT.
"expression": "A String", # Expression used for this match.
- "comparisonType": "A String", # Type of comparison. Possible values are LESS_THAN, GREATER_THAN or EQUAL.
"comparisonValue": "A String", # Value used for this comparison.
+ "comparisonType": "A String", # Type of comparison. Possible values are LESS_THAN, GREATER_THAN or EQUAL.
},
],
"useEventValue": True or False, # Determines if the event value should be used as the value for this goal.
@@ -216,7 +216,7 @@
"type": "analytics#profile", # Value is "analytics#profile".
},
"type": "A String", # Goal type. Possible values are URL_DESTINATION, VISIT_TIME_ON_SITE, VISIT_NUM_PAGES, AND EVENT.
- "id": "A String", # Goal ID.
+ "kind": "analytics#goal", # Resource type for an Analytics goal.
"selfLink": "A String", # Link for this goal.
"accountId": "A String", # Account ID to which this goal belongs.
}
@@ -226,10 +226,10 @@
An object of the form:
{ # JSON template for Analytics goal resource.
- "kind": "analytics#goal", # Resource type for an Analytics goal.
+ "updated": "A String", # Time this goal was last modified.
"visitTimeOnSiteDetails": { # Details for the goal of the type VISIT_TIME_ON_SITE.
- "comparisonType": "A String", # Type of comparison. Possible values are LESS_THAN or GREATER_THAN.
"comparisonValue": "A String", # Value used for this comparison.
+ "comparisonType": "A String", # Type of comparison. Possible values are LESS_THAN or GREATER_THAN.
},
"name": "A String", # Goal name.
"created": "A String", # Time this goal was created.
@@ -240,18 +240,18 @@
"steps": [ # List of steps configured for this goal funnel.
{
"url": "A String", # URL for this step.
- "name": "A String", # Step name.
"number": 42, # Step number.
+ "name": "A String", # Step name.
},
],
"firstStepRequired": True or False, # Determines if the first step in this goal is required.
},
- "updated": "A String", # Time this goal was last modified.
- "value": 3.14, # Goal value.
"visitNumPagesDetails": { # Details for the goal of the type VISIT_NUM_PAGES.
- "comparisonType": "A String", # Type of comparison. Possible values are LESS_THAN, GREATER_THAN, or EQUAL.
"comparisonValue": "A String", # Value used for this comparison.
+ "comparisonType": "A String", # Type of comparison. Possible values are LESS_THAN, GREATER_THAN, or EQUAL.
},
+ "value": 3.14, # Goal value.
+ "id": "A String", # Goal ID.
"internalWebPropertyId": "A String", # Internal ID for the web property to which this goal belongs.
"eventDetails": { # Details for the goal of the type EVENT.
"eventConditions": [ # List of event conditions.
@@ -259,8 +259,8 @@
"type": "A String", # Type of this event condition. Possible values are CATEGORY, ACTION, LABEL, or VALUE.
"matchType": "A String", # Type of the match to be performed. Possible values are REGEXP, BEGINS_WITH, or EXACT.
"expression": "A String", # Expression used for this match.
- "comparisonType": "A String", # Type of comparison. Possible values are LESS_THAN, GREATER_THAN or EQUAL.
"comparisonValue": "A String", # Value used for this comparison.
+ "comparisonType": "A String", # Type of comparison. Possible values are LESS_THAN, GREATER_THAN or EQUAL.
},
],
"useEventValue": True or False, # Determines if the event value should be used as the value for this goal.
@@ -273,7 +273,7 @@
"type": "analytics#profile", # Value is "analytics#profile".
},
"type": "A String", # Goal type. Possible values are URL_DESTINATION, VISIT_TIME_ON_SITE, VISIT_NUM_PAGES, AND EVENT.
- "id": "A String", # Goal ID.
+ "kind": "analytics#goal", # Resource type for an Analytics goal.
"selfLink": "A String", # Link for this goal.
"accountId": "A String", # Account ID to which this goal belongs.
}</pre>
@@ -298,10 +298,10 @@
"kind": "analytics#goals", # Collection type.
"items": [ # A list of goals.
{ # JSON template for Analytics goal resource.
- "kind": "analytics#goal", # Resource type for an Analytics goal.
+ "updated": "A String", # Time this goal was last modified.
"visitTimeOnSiteDetails": { # Details for the goal of the type VISIT_TIME_ON_SITE.
- "comparisonType": "A String", # Type of comparison. Possible values are LESS_THAN or GREATER_THAN.
"comparisonValue": "A String", # Value used for this comparison.
+ "comparisonType": "A String", # Type of comparison. Possible values are LESS_THAN or GREATER_THAN.
},
"name": "A String", # Goal name.
"created": "A String", # Time this goal was created.
@@ -312,18 +312,18 @@
"steps": [ # List of steps configured for this goal funnel.
{
"url": "A String", # URL for this step.
- "name": "A String", # Step name.
"number": 42, # Step number.
+ "name": "A String", # Step name.
},
],
"firstStepRequired": True or False, # Determines if the first step in this goal is required.
},
- "updated": "A String", # Time this goal was last modified.
- "value": 3.14, # Goal value.
"visitNumPagesDetails": { # Details for the goal of the type VISIT_NUM_PAGES.
- "comparisonType": "A String", # Type of comparison. Possible values are LESS_THAN, GREATER_THAN, or EQUAL.
"comparisonValue": "A String", # Value used for this comparison.
+ "comparisonType": "A String", # Type of comparison. Possible values are LESS_THAN, GREATER_THAN, or EQUAL.
},
+ "value": 3.14, # Goal value.
+ "id": "A String", # Goal ID.
"internalWebPropertyId": "A String", # Internal ID for the web property to which this goal belongs.
"eventDetails": { # Details for the goal of the type EVENT.
"eventConditions": [ # List of event conditions.
@@ -331,8 +331,8 @@
"type": "A String", # Type of this event condition. Possible values are CATEGORY, ACTION, LABEL, or VALUE.
"matchType": "A String", # Type of the match to be performed. Possible values are REGEXP, BEGINS_WITH, or EXACT.
"expression": "A String", # Expression used for this match.
- "comparisonType": "A String", # Type of comparison. Possible values are LESS_THAN, GREATER_THAN or EQUAL.
"comparisonValue": "A String", # Value used for this comparison.
+ "comparisonType": "A String", # Type of comparison. Possible values are LESS_THAN, GREATER_THAN or EQUAL.
},
],
"useEventValue": True or False, # Determines if the event value should be used as the value for this goal.
@@ -345,7 +345,7 @@
"type": "analytics#profile", # Value is "analytics#profile".
},
"type": "A String", # Goal type. Possible values are URL_DESTINATION, VISIT_TIME_ON_SITE, VISIT_NUM_PAGES, AND EVENT.
- "id": "A String", # Goal ID.
+ "kind": "analytics#goal", # Resource type for an Analytics goal.
"selfLink": "A String", # Link for this goal.
"accountId": "A String", # Account ID to which this goal belongs.
},
@@ -359,7 +359,7 @@
</div>
<div class="method">
- <code class="details" id="patch">patch(accountId, webPropertyId, profileId, goalId, body)</code>
+ <code class="details" id="patch">patch(accountId, webPropertyId, profileId, goalId, body=None)</code>
<pre>Updates an existing goal. This method supports patch semantics.
Args:
@@ -367,14 +367,14 @@
webPropertyId: string, Web property ID to update the goal. (required)
profileId: string, View (Profile) ID to update the goal. (required)
goalId: string, Index of the goal to be updated. (required)
- body: object, The request body. (required)
+ body: object, The request body.
The object takes the form of:
{ # JSON template for Analytics goal resource.
- "kind": "analytics#goal", # Resource type for an Analytics goal.
+ "updated": "A String", # Time this goal was last modified.
"visitTimeOnSiteDetails": { # Details for the goal of the type VISIT_TIME_ON_SITE.
- "comparisonType": "A String", # Type of comparison. Possible values are LESS_THAN or GREATER_THAN.
"comparisonValue": "A String", # Value used for this comparison.
+ "comparisonType": "A String", # Type of comparison. Possible values are LESS_THAN or GREATER_THAN.
},
"name": "A String", # Goal name.
"created": "A String", # Time this goal was created.
@@ -385,18 +385,18 @@
"steps": [ # List of steps configured for this goal funnel.
{
"url": "A String", # URL for this step.
- "name": "A String", # Step name.
"number": 42, # Step number.
+ "name": "A String", # Step name.
},
],
"firstStepRequired": True or False, # Determines if the first step in this goal is required.
},
- "updated": "A String", # Time this goal was last modified.
- "value": 3.14, # Goal value.
"visitNumPagesDetails": { # Details for the goal of the type VISIT_NUM_PAGES.
- "comparisonType": "A String", # Type of comparison. Possible values are LESS_THAN, GREATER_THAN, or EQUAL.
"comparisonValue": "A String", # Value used for this comparison.
+ "comparisonType": "A String", # Type of comparison. Possible values are LESS_THAN, GREATER_THAN, or EQUAL.
},
+ "value": 3.14, # Goal value.
+ "id": "A String", # Goal ID.
"internalWebPropertyId": "A String", # Internal ID for the web property to which this goal belongs.
"eventDetails": { # Details for the goal of the type EVENT.
"eventConditions": [ # List of event conditions.
@@ -404,8 +404,8 @@
"type": "A String", # Type of this event condition. Possible values are CATEGORY, ACTION, LABEL, or VALUE.
"matchType": "A String", # Type of the match to be performed. Possible values are REGEXP, BEGINS_WITH, or EXACT.
"expression": "A String", # Expression used for this match.
- "comparisonType": "A String", # Type of comparison. Possible values are LESS_THAN, GREATER_THAN or EQUAL.
"comparisonValue": "A String", # Value used for this comparison.
+ "comparisonType": "A String", # Type of comparison. Possible values are LESS_THAN, GREATER_THAN or EQUAL.
},
],
"useEventValue": True or False, # Determines if the event value should be used as the value for this goal.
@@ -418,7 +418,7 @@
"type": "analytics#profile", # Value is "analytics#profile".
},
"type": "A String", # Goal type. Possible values are URL_DESTINATION, VISIT_TIME_ON_SITE, VISIT_NUM_PAGES, AND EVENT.
- "id": "A String", # Goal ID.
+ "kind": "analytics#goal", # Resource type for an Analytics goal.
"selfLink": "A String", # Link for this goal.
"accountId": "A String", # Account ID to which this goal belongs.
}
@@ -428,10 +428,10 @@
An object of the form:
{ # JSON template for Analytics goal resource.
- "kind": "analytics#goal", # Resource type for an Analytics goal.
+ "updated": "A String", # Time this goal was last modified.
"visitTimeOnSiteDetails": { # Details for the goal of the type VISIT_TIME_ON_SITE.
- "comparisonType": "A String", # Type of comparison. Possible values are LESS_THAN or GREATER_THAN.
"comparisonValue": "A String", # Value used for this comparison.
+ "comparisonType": "A String", # Type of comparison. Possible values are LESS_THAN or GREATER_THAN.
},
"name": "A String", # Goal name.
"created": "A String", # Time this goal was created.
@@ -442,18 +442,18 @@
"steps": [ # List of steps configured for this goal funnel.
{
"url": "A String", # URL for this step.
- "name": "A String", # Step name.
"number": 42, # Step number.
+ "name": "A String", # Step name.
},
],
"firstStepRequired": True or False, # Determines if the first step in this goal is required.
},
- "updated": "A String", # Time this goal was last modified.
- "value": 3.14, # Goal value.
"visitNumPagesDetails": { # Details for the goal of the type VISIT_NUM_PAGES.
- "comparisonType": "A String", # Type of comparison. Possible values are LESS_THAN, GREATER_THAN, or EQUAL.
"comparisonValue": "A String", # Value used for this comparison.
+ "comparisonType": "A String", # Type of comparison. Possible values are LESS_THAN, GREATER_THAN, or EQUAL.
},
+ "value": 3.14, # Goal value.
+ "id": "A String", # Goal ID.
"internalWebPropertyId": "A String", # Internal ID for the web property to which this goal belongs.
"eventDetails": { # Details for the goal of the type EVENT.
"eventConditions": [ # List of event conditions.
@@ -461,8 +461,8 @@
"type": "A String", # Type of this event condition. Possible values are CATEGORY, ACTION, LABEL, or VALUE.
"matchType": "A String", # Type of the match to be performed. Possible values are REGEXP, BEGINS_WITH, or EXACT.
"expression": "A String", # Expression used for this match.
- "comparisonType": "A String", # Type of comparison. Possible values are LESS_THAN, GREATER_THAN or EQUAL.
"comparisonValue": "A String", # Value used for this comparison.
+ "comparisonType": "A String", # Type of comparison. Possible values are LESS_THAN, GREATER_THAN or EQUAL.
},
],
"useEventValue": True or False, # Determines if the event value should be used as the value for this goal.
@@ -475,14 +475,14 @@
"type": "analytics#profile", # Value is "analytics#profile".
},
"type": "A String", # Goal type. Possible values are URL_DESTINATION, VISIT_TIME_ON_SITE, VISIT_NUM_PAGES, AND EVENT.
- "id": "A String", # Goal ID.
+ "kind": "analytics#goal", # Resource type for an Analytics goal.
"selfLink": "A String", # Link for this goal.
"accountId": "A String", # Account ID to which this goal belongs.
}</pre>
</div>
<div class="method">
- <code class="details" id="update">update(accountId, webPropertyId, profileId, goalId, body)</code>
+ <code class="details" id="update">update(accountId, webPropertyId, profileId, goalId, body=None)</code>
<pre>Updates an existing goal.
Args:
@@ -490,14 +490,14 @@
webPropertyId: string, Web property ID to update the goal. (required)
profileId: string, View (Profile) ID to update the goal. (required)
goalId: string, Index of the goal to be updated. (required)
- body: object, The request body. (required)
+ body: object, The request body.
The object takes the form of:
{ # JSON template for Analytics goal resource.
- "kind": "analytics#goal", # Resource type for an Analytics goal.
+ "updated": "A String", # Time this goal was last modified.
"visitTimeOnSiteDetails": { # Details for the goal of the type VISIT_TIME_ON_SITE.
- "comparisonType": "A String", # Type of comparison. Possible values are LESS_THAN or GREATER_THAN.
"comparisonValue": "A String", # Value used for this comparison.
+ "comparisonType": "A String", # Type of comparison. Possible values are LESS_THAN or GREATER_THAN.
},
"name": "A String", # Goal name.
"created": "A String", # Time this goal was created.
@@ -508,18 +508,18 @@
"steps": [ # List of steps configured for this goal funnel.
{
"url": "A String", # URL for this step.
- "name": "A String", # Step name.
"number": 42, # Step number.
+ "name": "A String", # Step name.
},
],
"firstStepRequired": True or False, # Determines if the first step in this goal is required.
},
- "updated": "A String", # Time this goal was last modified.
- "value": 3.14, # Goal value.
"visitNumPagesDetails": { # Details for the goal of the type VISIT_NUM_PAGES.
- "comparisonType": "A String", # Type of comparison. Possible values are LESS_THAN, GREATER_THAN, or EQUAL.
"comparisonValue": "A String", # Value used for this comparison.
+ "comparisonType": "A String", # Type of comparison. Possible values are LESS_THAN, GREATER_THAN, or EQUAL.
},
+ "value": 3.14, # Goal value.
+ "id": "A String", # Goal ID.
"internalWebPropertyId": "A String", # Internal ID for the web property to which this goal belongs.
"eventDetails": { # Details for the goal of the type EVENT.
"eventConditions": [ # List of event conditions.
@@ -527,8 +527,8 @@
"type": "A String", # Type of this event condition. Possible values are CATEGORY, ACTION, LABEL, or VALUE.
"matchType": "A String", # Type of the match to be performed. Possible values are REGEXP, BEGINS_WITH, or EXACT.
"expression": "A String", # Expression used for this match.
- "comparisonType": "A String", # Type of comparison. Possible values are LESS_THAN, GREATER_THAN or EQUAL.
"comparisonValue": "A String", # Value used for this comparison.
+ "comparisonType": "A String", # Type of comparison. Possible values are LESS_THAN, GREATER_THAN or EQUAL.
},
],
"useEventValue": True or False, # Determines if the event value should be used as the value for this goal.
@@ -541,7 +541,7 @@
"type": "analytics#profile", # Value is "analytics#profile".
},
"type": "A String", # Goal type. Possible values are URL_DESTINATION, VISIT_TIME_ON_SITE, VISIT_NUM_PAGES, AND EVENT.
- "id": "A String", # Goal ID.
+ "kind": "analytics#goal", # Resource type for an Analytics goal.
"selfLink": "A String", # Link for this goal.
"accountId": "A String", # Account ID to which this goal belongs.
}
@@ -551,10 +551,10 @@
An object of the form:
{ # JSON template for Analytics goal resource.
- "kind": "analytics#goal", # Resource type for an Analytics goal.
+ "updated": "A String", # Time this goal was last modified.
"visitTimeOnSiteDetails": { # Details for the goal of the type VISIT_TIME_ON_SITE.
- "comparisonType": "A String", # Type of comparison. Possible values are LESS_THAN or GREATER_THAN.
"comparisonValue": "A String", # Value used for this comparison.
+ "comparisonType": "A String", # Type of comparison. Possible values are LESS_THAN or GREATER_THAN.
},
"name": "A String", # Goal name.
"created": "A String", # Time this goal was created.
@@ -565,18 +565,18 @@
"steps": [ # List of steps configured for this goal funnel.
{
"url": "A String", # URL for this step.
- "name": "A String", # Step name.
"number": 42, # Step number.
+ "name": "A String", # Step name.
},
],
"firstStepRequired": True or False, # Determines if the first step in this goal is required.
},
- "updated": "A String", # Time this goal was last modified.
- "value": 3.14, # Goal value.
"visitNumPagesDetails": { # Details for the goal of the type VISIT_NUM_PAGES.
- "comparisonType": "A String", # Type of comparison. Possible values are LESS_THAN, GREATER_THAN, or EQUAL.
"comparisonValue": "A String", # Value used for this comparison.
+ "comparisonType": "A String", # Type of comparison. Possible values are LESS_THAN, GREATER_THAN, or EQUAL.
},
+ "value": 3.14, # Goal value.
+ "id": "A String", # Goal ID.
"internalWebPropertyId": "A String", # Internal ID for the web property to which this goal belongs.
"eventDetails": { # Details for the goal of the type EVENT.
"eventConditions": [ # List of event conditions.
@@ -584,8 +584,8 @@
"type": "A String", # Type of this event condition. Possible values are CATEGORY, ACTION, LABEL, or VALUE.
"matchType": "A String", # Type of the match to be performed. Possible values are REGEXP, BEGINS_WITH, or EXACT.
"expression": "A String", # Expression used for this match.
- "comparisonType": "A String", # Type of comparison. Possible values are LESS_THAN, GREATER_THAN or EQUAL.
"comparisonValue": "A String", # Value used for this comparison.
+ "comparisonType": "A String", # Type of comparison. Possible values are LESS_THAN, GREATER_THAN or EQUAL.
},
],
"useEventValue": True or False, # Determines if the event value should be used as the value for this goal.
@@ -598,7 +598,7 @@
"type": "analytics#profile", # Value is "analytics#profile".
},
"type": "A String", # Goal type. Possible values are URL_DESTINATION, VISIT_TIME_ON_SITE, VISIT_NUM_PAGES, AND EVENT.
- "id": "A String", # Goal ID.
+ "kind": "analytics#goal", # Resource type for an Analytics goal.
"selfLink": "A String", # Link for this goal.
"accountId": "A String", # Account ID to which this goal belongs.
}</pre>