Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-analyticsadmin</artifactId>
<version>v1alpha-rev20260412-2.0.0</version>
<version>v1alpha-rev20260607-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-analyticsadmin:v1alpha-rev20260412-2.0.0'
implementation 'com.google.apis:google-api-services-analyticsadmin:v1alpha-rev20260607-2.0.0'
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,13 @@
@SuppressWarnings("javadoc")
public final class GoogleAnalyticsAdminV1alphaPropertySummary extends com.google.api.client.json.GenericJson {

/**
* If true, then the user has a Google Analytics role that permits them to edit the property.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.Boolean canEdit;

/**
* Display name for the property referred to in this property summary.
* The value may be {@code null}.
Expand Down Expand Up @@ -61,6 +68,23 @@ public final class GoogleAnalyticsAdminV1alphaPropertySummary extends com.google
@com.google.api.client.util.Key
private java.lang.String propertyType;

/**
* If true, then the user has a Google Analytics role that permits them to edit the property.
* @return value or {@code null} for none
*/
public java.lang.Boolean getCanEdit() {
return canEdit;
}

/**
* If true, then the user has a Google Analytics role that permits them to edit the property.
* @param canEdit canEdit or {@code null} for none
*/
public GoogleAnalyticsAdminV1alphaPropertySummary setCanEdit(java.lang.Boolean canEdit) {
this.canEdit = canEdit;
return this;
}

/**
* Display name for the property referred to in this property summary.
* @return value or {@code null} for none
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@

<groupId>com.google.apis</groupId>
<artifactId>google-api-services-analyticsadmin</artifactId>
<version>v1alpha-rev20260412-2.0.0</version>
<name>Google Analytics Admin API v1alpha-rev20260412-2.0.0</name>
<version>v1alpha-rev20260607-2.0.0</version>
<name>Google Analytics Admin API v1alpha-rev20260607-2.0.0</name>
<packaging>jar</packaging>

<inceptionYear>2011</inceptionYear>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-analyticsadmin</artifactId>
<version>v1alpha-rev20260412-2.0.0</version>
<version>v1alpha-rev20260607-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-analyticsadmin:v1alpha-rev20260412-2.0.0'
implementation 'com.google.apis:google-api-services-analyticsadmin:v1alpha-rev20260607-2.0.0'
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-analyticsadmin</artifactId>
<version>v1beta-rev20260331-2.0.0</version>
<version>v1beta-rev20260607-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-analyticsadmin:v1beta-rev20260331-2.0.0'
implementation 'com.google.apis:google-api-services-analyticsadmin:v1beta-rev20260607-2.0.0'
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,13 @@
@SuppressWarnings("javadoc")
public final class GoogleAnalyticsAdminV1betaPropertySummary extends com.google.api.client.json.GenericJson {

/**
* If true, then the user has a Google Analytics role that permits them to edit the property.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.Boolean canEdit;

/**
* Display name for the property referred to in this property summary.
* The value may be {@code null}.
Expand Down Expand Up @@ -61,6 +68,23 @@ public final class GoogleAnalyticsAdminV1betaPropertySummary extends com.google.
@com.google.api.client.util.Key
private java.lang.String propertyType;

/**
* If true, then the user has a Google Analytics role that permits them to edit the property.
* @return value or {@code null} for none
*/
public java.lang.Boolean getCanEdit() {
return canEdit;
}

/**
* If true, then the user has a Google Analytics role that permits them to edit the property.
* @param canEdit canEdit or {@code null} for none
*/
public GoogleAnalyticsAdminV1betaPropertySummary setCanEdit(java.lang.Boolean canEdit) {
this.canEdit = canEdit;
return this;
}

/**
* Display name for the property referred to in this property summary.
* @return value or {@code null} for none
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@

<groupId>com.google.apis</groupId>
<artifactId>google-api-services-analyticsadmin</artifactId>
<version>v1beta-rev20260331-2.0.0</version>
<name>Google Analytics Admin API v1beta-rev20260331-2.0.0</name>
<version>v1beta-rev20260607-2.0.0</version>
<name>Google Analytics Admin API v1beta-rev20260607-2.0.0</name>
<packaging>jar</packaging>

<inceptionYear>2011</inceptionYear>
Expand Down
4 changes: 2 additions & 2 deletions clients/google-api-services-analyticsadmin/v1beta/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-analyticsadmin</artifactId>
<version>v1beta-rev20260331-2.0.0</version>
<version>v1beta-rev20260607-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-analyticsadmin:v1beta-rev20260331-2.0.0'
implementation 'com.google.apis:google-api-services-analyticsadmin:v1beta-rev20260607-2.0.0'
}
```

Expand Down