Skip to content
Open
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
4 changes: 2 additions & 2 deletions clients/google-api-services-dfareporting/v5/2.0.0/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-dfareporting</artifactId>
<version>v5-rev20260713-2.0.0</version>
<version>v5-rev20260721-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-dfareporting:v5-rev20260713-2.0.0'
implementation 'com.google.apis:google-api-services-dfareporting:v5-rev20260721-2.0.0'
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -514,6 +514,15 @@ public final class Creative extends com.google.api.client.json.GenericJson {
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
private java.lang.Long subaccountId;

/**
* Optional. Whether to add a label to the creative as created or edited using AI when served in
* regions with local AI labeling regulations. [Learn more about labeling requirements in AI
* regulations.](https://support.google.com/campaignmanager/answer/17232030)
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String syntheticContentAttestationStatus;

/**
* Third-party URL used to record backup image impressions. Applicable to the following creative
* types: all RICH_MEDIA.
Expand Down Expand Up @@ -1706,6 +1715,27 @@ public Creative setSubaccountId(java.lang.Long subaccountId) {
return this;
}

/**
* Optional. Whether to add a label to the creative as created or edited using AI when served in
* regions with local AI labeling regulations. [Learn more about labeling requirements in AI
* regulations.](https://support.google.com/campaignmanager/answer/17232030)
* @return value or {@code null} for none
*/
public java.lang.String getSyntheticContentAttestationStatus() {
return syntheticContentAttestationStatus;
}

/**
* Optional. Whether to add a label to the creative as created or edited using AI when served in
* regions with local AI labeling regulations. [Learn more about labeling requirements in AI
* regulations.](https://support.google.com/campaignmanager/answer/17232030)
* @param syntheticContentAttestationStatus syntheticContentAttestationStatus or {@code null} for none
*/
public Creative setSyntheticContentAttestationStatus(java.lang.String syntheticContentAttestationStatus) {
this.syntheticContentAttestationStatus = syntheticContentAttestationStatus;
return this;
}

/**
* Third-party URL used to record backup image impressions. Applicable to the following creative
* types: all RICH_MEDIA.
Expand Down
4 changes: 2 additions & 2 deletions clients/google-api-services-dfareporting/v5/2.0.0/pom.xml
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-dfareporting</artifactId>
<version>v5-rev20260713-2.0.0</version>
<name>Campaign Manager 360 API v5-rev20260713-2.0.0</name>
<version>v5-rev20260721-2.0.0</version>
<name>Campaign Manager 360 API v5-rev20260721-2.0.0</name>
<packaging>jar</packaging>

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

Expand Down
Loading