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-androidpublisher</artifactId>
<version>v3-rev20260528-2.0.0</version>
<version>v3-rev20260625-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-androidpublisher:v3-rev20260528-2.0.0'
implementation 'com.google.apis:google-api-services-androidpublisher:v3-rev20260625-2.0.0'
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5794,6 +5794,22 @@ public Upload setImageType(java.lang.String imageType) {
return this;
}

/** Optional. Whether the image was generated by AI. Attested by the developer. */
@com.google.api.client.util.Key
private java.lang.String aiGeneratedState;

/** Optional. Whether the image was generated by AI. Attested by the developer.
*/
public java.lang.String getAiGeneratedState() {
return aiGeneratedState;
}

/** Optional. Whether the image was generated by AI. Attested by the developer. */
public Upload setAiGeneratedState(java.lang.String aiGeneratedState) {
this.aiGeneratedState = aiGeneratedState;
return this;
}

@Override
public Upload set(String parameterName, Object value) {
return (Upload) super.set(parameterName, value);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,13 @@
@SuppressWarnings("javadoc")
public final class Image extends com.google.api.client.json.GenericJson {

/**
* Optional. Whether the image was generated by AI. Attested by the developer.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String aiGeneratedState;

/**
* A unique id representing this image.
* The value may be {@code null}.
Expand Down Expand Up @@ -58,6 +65,23 @@ public final class Image extends com.google.api.client.json.GenericJson {
@com.google.api.client.util.Key
private java.lang.String url;

/**
* Optional. Whether the image was generated by AI. Attested by the developer.
* @return value or {@code null} for none
*/
public java.lang.String getAiGeneratedState() {
return aiGeneratedState;
}

/**
* Optional. Whether the image was generated by AI. Attested by the developer.
* @param aiGeneratedState aiGeneratedState or {@code null} for none
*/
public Image setAiGeneratedState(java.lang.String aiGeneratedState) {
this.aiGeneratedState = aiGeneratedState;
return this;
}

/**
* A unique id representing this image.
* @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-androidpublisher</artifactId>
<version>v3-rev20260528-2.0.0</version>
<name>Google Play Android Developer API v3-rev20260528-2.0.0</name>
<version>v3-rev20260625-2.0.0</version>
<name>Google Play Android Developer API v3-rev20260625-2.0.0</name>
<packaging>jar</packaging>

<inceptionYear>2011</inceptionYear>
Expand Down
4 changes: 2 additions & 2 deletions clients/google-api-services-androidpublisher/v3/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-androidpublisher</artifactId>
<version>v3-rev20260528-2.0.0</version>
<version>v3-rev20260625-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-androidpublisher:v3-rev20260528-2.0.0'
implementation 'com.google.apis:google-api-services-androidpublisher:v3-rev20260625-2.0.0'
}
```

Expand Down
Loading