Skip to content

Commit 343edce

Browse files
1 parent ea5f61f commit 343edce

61 files changed

Lines changed: 1865 additions & 226 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

src/GoogleAnalyticsAdmin/GoogleAnalyticsAdminV1betaAccessBetweenFilter.php

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,9 @@ class GoogleAnalyticsAdminV1betaAccessBetweenFilter extends \Google\Model
2525
protected $toValueDataType = '';
2626

2727
/**
28-
* @param GoogleAnalyticsAdminV1betaNumericValue
28+
* Begins with this number.
29+
*
30+
* @param GoogleAnalyticsAdminV1betaNumericValue $fromValue
2931
*/
3032
public function setFromValue(GoogleAnalyticsAdminV1betaNumericValue $fromValue)
3133
{
@@ -39,7 +41,9 @@ public function getFromValue()
3941
return $this->fromValue;
4042
}
4143
/**
42-
* @param GoogleAnalyticsAdminV1betaNumericValue
44+
* Ends with this number.
45+
*
46+
* @param GoogleAnalyticsAdminV1betaNumericValue $toValue
4347
*/
4448
public function setToValue(GoogleAnalyticsAdminV1betaNumericValue $toValue)
4549
{

src/GoogleAnalyticsAdmin/GoogleAnalyticsAdminV1betaAccessDateRange.php

Lines changed: 22 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,16 +20,31 @@
2020
class GoogleAnalyticsAdminV1betaAccessDateRange extends \Google\Model
2121
{
2222
/**
23+
* The inclusive end date for the query in the format `YYYY-MM-DD`. Cannot be
24+
* before `startDate`. The format `NdaysAgo`, `yesterday`, or `today` is also
25+
* accepted, and in that case, the date is inferred based on the current time
26+
* in the request's time zone.
27+
*
2328
* @var string
2429
*/
2530
public $endDate;
2631
/**
32+
* The inclusive start date for the query in the format `YYYY-MM-DD`. Cannot
33+
* be after `endDate`. The format `NdaysAgo`, `yesterday`, or `today` is also
34+
* accepted, and in that case, the date is inferred based on the current time
35+
* in the request's time zone.
36+
*
2737
* @var string
2838
*/
2939
public $startDate;
3040

3141
/**
32-
* @param string
42+
* The inclusive end date for the query in the format `YYYY-MM-DD`. Cannot be
43+
* before `startDate`. The format `NdaysAgo`, `yesterday`, or `today` is also
44+
* accepted, and in that case, the date is inferred based on the current time
45+
* in the request's time zone.
46+
*
47+
* @param string $endDate
3348
*/
3449
public function setEndDate($endDate)
3550
{
@@ -43,7 +58,12 @@ public function getEndDate()
4358
return $this->endDate;
4459
}
4560
/**
46-
* @param string
61+
* The inclusive start date for the query in the format `YYYY-MM-DD`. Cannot
62+
* be after `endDate`. The format `NdaysAgo`, `yesterday`, or `today` is also
63+
* accepted, and in that case, the date is inferred based on the current time
64+
* in the request's time zone.
65+
*
66+
* @param string $startDate
4767
*/
4868
public function setStartDate($startDate)
4969
{

src/GoogleAnalyticsAdmin/GoogleAnalyticsAdminV1betaAccessDimension.php

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,22 @@
2020
class GoogleAnalyticsAdminV1betaAccessDimension extends \Google\Model
2121
{
2222
/**
23+
* The API name of the dimension. See [Data Access Schema](https://developers.
24+
* google.com/analytics/devguides/config/admin/v1/access-api-schema) for the
25+
* list of dimensions supported in this API. Dimensions are referenced by name
26+
* in `dimensionFilter` and `orderBys`.
27+
*
2328
* @var string
2429
*/
2530
public $dimensionName;
2631

2732
/**
28-
* @param string
33+
* The API name of the dimension. See [Data Access Schema](https://developers.
34+
* google.com/analytics/devguides/config/admin/v1/access-api-schema) for the
35+
* list of dimensions supported in this API. Dimensions are referenced by name
36+
* in `dimensionFilter` and `orderBys`.
37+
*
38+
* @param string $dimensionName
2939
*/
3040
public function setDimensionName($dimensionName)
3141
{

src/GoogleAnalyticsAdmin/GoogleAnalyticsAdminV1betaAccessDimensionHeader.php

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,16 @@
2020
class GoogleAnalyticsAdminV1betaAccessDimensionHeader extends \Google\Model
2121
{
2222
/**
23+
* The dimension's name; for example 'userEmail'.
24+
*
2325
* @var string
2426
*/
2527
public $dimensionName;
2628

2729
/**
28-
* @param string
30+
* The dimension's name; for example 'userEmail'.
31+
*
32+
* @param string $dimensionName
2933
*/
3034
public function setDimensionName($dimensionName)
3135
{

src/GoogleAnalyticsAdmin/GoogleAnalyticsAdminV1betaAccessDimensionValue.php

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,18 @@
2020
class GoogleAnalyticsAdminV1betaAccessDimensionValue extends \Google\Model
2121
{
2222
/**
23+
* The dimension value. For example, this value may be 'France' for the
24+
* 'country' dimension.
25+
*
2326
* @var string
2427
*/
2528
public $value;
2629

2730
/**
28-
* @param string
31+
* The dimension value. For example, this value may be 'France' for the
32+
* 'country' dimension.
33+
*
34+
* @param string $value
2935
*/
3036
public function setValue($value)
3137
{

src/GoogleAnalyticsAdmin/GoogleAnalyticsAdminV1betaAccessFilter.php

Lines changed: 17 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ class GoogleAnalyticsAdminV1betaAccessFilter extends \Google\Model
2222
protected $betweenFilterType = GoogleAnalyticsAdminV1betaAccessBetweenFilter::class;
2323
protected $betweenFilterDataType = '';
2424
/**
25+
* The dimension name or metric name.
26+
*
2527
* @var string
2628
*/
2729
public $fieldName;
@@ -33,7 +35,9 @@ class GoogleAnalyticsAdminV1betaAccessFilter extends \Google\Model
3335
protected $stringFilterDataType = '';
3436

3537
/**
36-
* @param GoogleAnalyticsAdminV1betaAccessBetweenFilter
38+
* A filter for two values.
39+
*
40+
* @param GoogleAnalyticsAdminV1betaAccessBetweenFilter $betweenFilter
3741
*/
3842
public function setBetweenFilter(GoogleAnalyticsAdminV1betaAccessBetweenFilter $betweenFilter)
3943
{
@@ -47,7 +51,9 @@ public function getBetweenFilter()
4751
return $this->betweenFilter;
4852
}
4953
/**
50-
* @param string
54+
* The dimension name or metric name.
55+
*
56+
* @param string $fieldName
5157
*/
5258
public function setFieldName($fieldName)
5359
{
@@ -61,7 +67,9 @@ public function getFieldName()
6167
return $this->fieldName;
6268
}
6369
/**
64-
* @param GoogleAnalyticsAdminV1betaAccessInListFilter
70+
* A filter for in list values.
71+
*
72+
* @param GoogleAnalyticsAdminV1betaAccessInListFilter $inListFilter
6573
*/
6674
public function setInListFilter(GoogleAnalyticsAdminV1betaAccessInListFilter $inListFilter)
6775
{
@@ -75,7 +83,9 @@ public function getInListFilter()
7583
return $this->inListFilter;
7684
}
7785
/**
78-
* @param GoogleAnalyticsAdminV1betaAccessNumericFilter
86+
* A filter for numeric or date values.
87+
*
88+
* @param GoogleAnalyticsAdminV1betaAccessNumericFilter $numericFilter
7989
*/
8090
public function setNumericFilter(GoogleAnalyticsAdminV1betaAccessNumericFilter $numericFilter)
8191
{
@@ -89,7 +99,9 @@ public function getNumericFilter()
8999
return $this->numericFilter;
90100
}
91101
/**
92-
* @param GoogleAnalyticsAdminV1betaAccessStringFilter
102+
* Strings related filter.
103+
*
104+
* @param GoogleAnalyticsAdminV1betaAccessStringFilter $stringFilter
93105
*/
94106
public function setStringFilter(GoogleAnalyticsAdminV1betaAccessStringFilter $stringFilter)
95107
{

src/GoogleAnalyticsAdmin/GoogleAnalyticsAdminV1betaAccessFilterExpression.php

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,10 @@ class GoogleAnalyticsAdminV1betaAccessFilterExpression extends \Google\Model
2929
protected $orGroupDataType = '';
3030

3131
/**
32-
* @param GoogleAnalyticsAdminV1betaAccessFilter
32+
* A primitive filter. In the same FilterExpression, all of the filter's field
33+
* names need to be either all dimensions or all metrics.
34+
*
35+
* @param GoogleAnalyticsAdminV1betaAccessFilter $accessFilter
3336
*/
3437
public function setAccessFilter(GoogleAnalyticsAdminV1betaAccessFilter $accessFilter)
3538
{
@@ -43,7 +46,9 @@ public function getAccessFilter()
4346
return $this->accessFilter;
4447
}
4548
/**
46-
* @param GoogleAnalyticsAdminV1betaAccessFilterExpressionList
49+
* Each of the FilterExpressions in the and_group has an AND relationship.
50+
*
51+
* @param GoogleAnalyticsAdminV1betaAccessFilterExpressionList $andGroup
4752
*/
4853
public function setAndGroup(GoogleAnalyticsAdminV1betaAccessFilterExpressionList $andGroup)
4954
{
@@ -57,7 +62,9 @@ public function getAndGroup()
5762
return $this->andGroup;
5863
}
5964
/**
60-
* @param GoogleAnalyticsAdminV1betaAccessFilterExpression
65+
* The FilterExpression is NOT of not_expression.
66+
*
67+
* @param GoogleAnalyticsAdminV1betaAccessFilterExpression $notExpression
6168
*/
6269
public function setNotExpression(GoogleAnalyticsAdminV1betaAccessFilterExpression $notExpression)
6370
{
@@ -71,7 +78,9 @@ public function getNotExpression()
7178
return $this->notExpression;
7279
}
7380
/**
74-
* @param GoogleAnalyticsAdminV1betaAccessFilterExpressionList
81+
* Each of the FilterExpressions in the or_group has an OR relationship.
82+
*
83+
* @param GoogleAnalyticsAdminV1betaAccessFilterExpressionList $orGroup
7584
*/
7685
public function setOrGroup(GoogleAnalyticsAdminV1betaAccessFilterExpressionList $orGroup)
7786
{

src/GoogleAnalyticsAdmin/GoogleAnalyticsAdminV1betaAccessFilterExpressionList.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,9 @@ class GoogleAnalyticsAdminV1betaAccessFilterExpressionList extends \Google\Colle
2424
protected $expressionsDataType = 'array';
2525

2626
/**
27-
* @param GoogleAnalyticsAdminV1betaAccessFilterExpression[]
27+
* A list of filter expressions.
28+
*
29+
* @param GoogleAnalyticsAdminV1betaAccessFilterExpression[] $expressions
2830
*/
2931
public function setExpressions($expressions)
3032
{

src/GoogleAnalyticsAdmin/GoogleAnalyticsAdminV1betaAccessInListFilter.php

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,22 @@ class GoogleAnalyticsAdminV1betaAccessInListFilter extends \Google\Collection
2121
{
2222
protected $collection_key = 'values';
2323
/**
24+
* If true, the string value is case sensitive.
25+
*
2426
* @var bool
2527
*/
2628
public $caseSensitive;
2729
/**
30+
* The list of string values. Must be non-empty.
31+
*
2832
* @var string[]
2933
*/
3034
public $values;
3135

3236
/**
33-
* @param bool
37+
* If true, the string value is case sensitive.
38+
*
39+
* @param bool $caseSensitive
3440
*/
3541
public function setCaseSensitive($caseSensitive)
3642
{
@@ -44,7 +50,9 @@ public function getCaseSensitive()
4450
return $this->caseSensitive;
4551
}
4652
/**
47-
* @param string[]
53+
* The list of string values. Must be non-empty.
54+
*
55+
* @param string[] $values
4856
*/
4957
public function setValues($values)
5058
{

src/GoogleAnalyticsAdmin/GoogleAnalyticsAdminV1betaAccessMetric.php

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,22 @@
2020
class GoogleAnalyticsAdminV1betaAccessMetric extends \Google\Model
2121
{
2222
/**
23+
* The API name of the metric. See [Data Access Schema](https://developers.goo
24+
* gle.com/analytics/devguides/config/admin/v1/access-api-schema) for the list
25+
* of metrics supported in this API. Metrics are referenced by name in
26+
* `metricFilter` & `orderBys`.
27+
*
2328
* @var string
2429
*/
2530
public $metricName;
2631

2732
/**
28-
* @param string
33+
* The API name of the metric. See [Data Access Schema](https://developers.goo
34+
* gle.com/analytics/devguides/config/admin/v1/access-api-schema) for the list
35+
* of metrics supported in this API. Metrics are referenced by name in
36+
* `metricFilter` & `orderBys`.
37+
*
38+
* @param string $metricName
2939
*/
3040
public function setMetricName($metricName)
3141
{

0 commit comments

Comments
 (0)