Skip to content

Commit 7c3040a

Browse files
1 parent f0693e7 commit 7c3040a

File tree

6 files changed

+69
-10
lines changed

6 files changed

+69
-10
lines changed

clients/google-api-services-dfareporting/v4/2.0.0/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-dfareporting</artifactId>
25-
<version>v4-rev20250218-2.0.0</version>
25+
<version>v4-rev20250602-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-dfareporting:v4-rev20250218-2.0.0'
38+
implementation 'com.google.apis:google-api-services-dfareporting:v4-rev20250602-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-dfareporting/v4/2.0.0/com/google/api/services/dfareporting/model/CartData.java

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,10 @@
1717
package com.google.api.services.dfareporting.model;
1818

1919
/**
20-
* Contains additional information about cart data. This field may only be used when calling
21-
* batchinsert; it is not supported by batchupdate.
20+
* *Beta:* This feature is currently in beta. Contains additional information about cart data. This
21+
* field may only be used when calling batchinsert; it is not supported by batchupdate. Cart data
22+
* reporting is only supported in SA360. [Learn
23+
* more](https://support.google.com/sa360/topic/13425788)
2224
*
2325
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
2426
* transmitted over HTTP when working with the Campaign Manager 360 API. For a detailed explanation

clients/google-api-services-dfareporting/v4/2.0.0/com/google/api/services/dfareporting/model/Conversion.java

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -183,6 +183,14 @@ public final class Conversion extends com.google.api.client.json.GenericJson {
183183
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
184184
private java.lang.Long quantity;
185185

186+
/**
187+
* Session attributes for the conversion, encoded as based64 bytes. This field may only be used
188+
* when calling batchinsert; it is not supported by batchupdate.
189+
* The value may be {@code null}.
190+
*/
191+
@com.google.api.client.util.Key
192+
private java.lang.String sessionAttributesEncoded;
193+
186194
/**
187195
* The timestamp of conversion, in Unix epoch micros. This is a required field.
188196
* The value may be {@code null}.
@@ -574,6 +582,55 @@ public Conversion setQuantity(java.lang.Long quantity) {
574582
return this;
575583
}
576584

585+
/**
586+
* Session attributes for the conversion, encoded as based64 bytes. This field may only be used
587+
* when calling batchinsert; it is not supported by batchupdate.
588+
* @see #decodeSessionAttributesEncoded()
589+
* @return value or {@code null} for none
590+
*/
591+
public java.lang.String getSessionAttributesEncoded() {
592+
return sessionAttributesEncoded;
593+
}
594+
595+
/**
596+
* Session attributes for the conversion, encoded as based64 bytes. This field may only be used
597+
* when calling batchinsert; it is not supported by batchupdate.
598+
* @see #getSessionAttributesEncoded()
599+
* @return Base64 decoded value or {@code null} for none
600+
*
601+
* @since 1.14
602+
*/
603+
public byte[] decodeSessionAttributesEncoded() {
604+
return com.google.api.client.util.Base64.decodeBase64(sessionAttributesEncoded);
605+
}
606+
607+
/**
608+
* Session attributes for the conversion, encoded as based64 bytes. This field may only be used
609+
* when calling batchinsert; it is not supported by batchupdate.
610+
* @see #encodeSessionAttributesEncoded()
611+
* @param sessionAttributesEncoded sessionAttributesEncoded or {@code null} for none
612+
*/
613+
public Conversion setSessionAttributesEncoded(java.lang.String sessionAttributesEncoded) {
614+
this.sessionAttributesEncoded = sessionAttributesEncoded;
615+
return this;
616+
}
617+
618+
/**
619+
* Session attributes for the conversion, encoded as based64 bytes. This field may only be used
620+
* when calling batchinsert; it is not supported by batchupdate.
621+
* @see #setSessionAttributesEncoded()
622+
*
623+
* <p>
624+
* The value is encoded Base64 or {@code null} for none.
625+
* </p>
626+
*
627+
* @since 1.14
628+
*/
629+
public Conversion encodeSessionAttributesEncoded(byte[] sessionAttributesEncoded) {
630+
this.sessionAttributesEncoded = com.google.api.client.util.Base64.encodeBase64URLSafeString(sessionAttributesEncoded);
631+
return this;
632+
}
633+
577634
/**
578635
* The timestamp of conversion, in Unix epoch micros. This is a required field.
579636
* @return value or {@code null} for none

clients/google-api-services-dfareporting/v4/2.0.0/com/google/api/services/dfareporting/model/CustomFloodlightVariable.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
package com.google.api.services.dfareporting.model;
1818

1919
/**
20-
* A custom floodlight variable. This field may only be used when calling batchinsert; it is not
21-
* supported by batchupdate.
20+
* A custom floodlight variable. Can be used in both batchinsert and batchupdate. Adding this in
21+
* batchupdate will update or append the variable to the existing list.
2222
*
2323
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
2424
* transmitted over HTTP when working with the Campaign Manager 360 API. For a detailed explanation

clients/google-api-services-dfareporting/v4/2.0.0/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
<groupId>com.google.apis</groupId>
1010
<artifactId>google-api-services-dfareporting</artifactId>
11-
<version>v4-rev20250218-2.0.0</version>
12-
<name>Campaign Manager 360 API v4-rev20250218-2.0.0</name>
11+
<version>v4-rev20250602-2.0.0</version>
12+
<name>Campaign Manager 360 API v4-rev20250602-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-dfareporting/v4/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-dfareporting</artifactId>
25-
<version>v4-rev20250218-2.0.0</version>
25+
<version>v4-rev20250602-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-dfareporting:v4-rev20250218-2.0.0'
38+
implementation 'com.google.apis:google-api-services-dfareporting:v4-rev20250602-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)