Skip to content
Closed
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-datamanager/v1/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-datamanager</artifactId>
<version>v1-rev20260102-2.0.0</version>
<version>v1-rev20260217-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-datamanager:v1-rev20260102-2.0.0'
implementation 'com.google.apis:google-api-services-datamanager:v1-rev20260217-2.0.0'
}
```

Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -52,19 +52,35 @@ public final class AudienceMember extends com.google.api.client.json.GenericJson

/**
* [Publisher Advertiser Identity Reconciliation (PAIR)
* IDs](//support.google.com/admanager/answer/15067908).
* IDs](//support.google.com/admanager/answer/15067908). This feature is only available to data
* partners.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private PairData pairData;

/**
* Data related to publisher provided identifiers. This feature is only available to data
* partners.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private PpidData ppidData;

/**
* User-provided data that identifies the user.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private UserData userData;

/**
* Data related to unique identifiers for a user, as defined by the advertiser.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private UserIdData userIdData;

/**
* Optional. The consent setting for the user.
* @return value or {@code null} for none
Expand Down Expand Up @@ -118,7 +134,8 @@ public AudienceMember setMobileData(MobileData mobileData) {

/**
* [Publisher Advertiser Identity Reconciliation (PAIR)
* IDs](//support.google.com/admanager/answer/15067908).
* IDs](//support.google.com/admanager/answer/15067908). This feature is only available to data
* partners.
* @return value or {@code null} for none
*/
public PairData getPairData() {
Expand All @@ -127,14 +144,34 @@ public PairData getPairData() {

/**
* [Publisher Advertiser Identity Reconciliation (PAIR)
* IDs](//support.google.com/admanager/answer/15067908).
* IDs](//support.google.com/admanager/answer/15067908). This feature is only available to data
* partners.
* @param pairData pairData or {@code null} for none
*/
public AudienceMember setPairData(PairData pairData) {
this.pairData = pairData;
return this;
}

/**
* Data related to publisher provided identifiers. This feature is only available to data
* partners.
* @return value or {@code null} for none
*/
public PpidData getPpidData() {
return ppidData;
}

/**
* Data related to publisher provided identifiers. This feature is only available to data
* partners.
* @param ppidData ppidData or {@code null} for none
*/
public AudienceMember setPpidData(PpidData ppidData) {
this.ppidData = ppidData;
return this;
}

/**
* User-provided data that identifies the user.
* @return value or {@code null} for none
Expand All @@ -152,6 +189,23 @@ public AudienceMember setUserData(UserData userData) {
return this;
}

/**
* Data related to unique identifiers for a user, as defined by the advertiser.
* @return value or {@code null} for none
*/
public UserIdData getUserIdData() {
return userIdData;
}

/**
* Data related to unique identifiers for a user, as defined by the advertiser.
* @param userIdData userIdData or {@code null} for none
*/
public AudienceMember setUserIdData(UserIdData userIdData) {
this.userIdData = userIdData;
return this;
}

@Override
public AudienceMember set(String fieldName, Object value) {
return (AudienceMember) super.set(fieldName, value);
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,93 @@
/*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
* in compliance with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the License
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
* or implied. See the License for the specific language governing permissions and limitations under
* the License.
*/
/*
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
* Modify at your own risk.
*/

package com.google.api.services.datamanager.v1.model;

/**
* Baseline criteria against which insights are compared.
*
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
* transmitted over HTTP when working with the Data Manager API. For a detailed explanation see:
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
* </p>
*
* @author Google, Inc.
*/
@SuppressWarnings("javadoc")
public final class Baseline extends com.google.api.client.json.GenericJson {

/**
* The baseline location of the request. Baseline location is an OR-list of the requested regions.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private Location baselineLocation;

/**
* If set to true, the service will try to automatically detect the baseline location for
* insights.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.Boolean locationAutoDetectionEnabled;

/**
* The baseline location of the request. Baseline location is an OR-list of the requested regions.
* @return value or {@code null} for none
*/
public Location getBaselineLocation() {
return baselineLocation;
}

/**
* The baseline location of the request. Baseline location is an OR-list of the requested regions.
* @param baselineLocation baselineLocation or {@code null} for none
*/
public Baseline setBaselineLocation(Location baselineLocation) {
this.baselineLocation = baselineLocation;
return this;
}

/**
* If set to true, the service will try to automatically detect the baseline location for
* insights.
* @return value or {@code null} for none
*/
public java.lang.Boolean getLocationAutoDetectionEnabled() {
return locationAutoDetectionEnabled;
}

/**
* If set to true, the service will try to automatically detect the baseline location for
* insights.
* @param locationAutoDetectionEnabled locationAutoDetectionEnabled or {@code null} for none
*/
public Baseline setLocationAutoDetectionEnabled(java.lang.Boolean locationAutoDetectionEnabled) {
this.locationAutoDetectionEnabled = locationAutoDetectionEnabled;
return this;
}

@Override
public Baseline set(String fieldName, Object value) {
return (Baseline) super.set(fieldName, value);
}

@Override
public Baseline clone() {
return (Baseline) super.clone();
}

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,90 @@
/*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
* in compliance with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the License
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
* or implied. See the License for the specific language governing permissions and limitations under
* the License.
*/
/*
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
* Modify at your own risk.
*/

package com.google.api.services.datamanager.v1.model;

/**
* Additional information when `CONTACT_ID` is one of the `upload_key_types`.
*
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
* transmitted over HTTP when working with the Data Manager API. For a detailed explanation see:
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
* </p>
*
* @author Google, Inc.
*/
@SuppressWarnings("javadoc")
public final class ContactIdInfo extends com.google.api.client.json.GenericJson {

/**
* Optional. Immutable. Source of the upload data
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String dataSourceType;

/**
* Output only. Match rate for customer match user lists.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.Integer matchRatePercentage;

/**
* Optional. Immutable. Source of the upload data
* @return value or {@code null} for none
*/
public java.lang.String getDataSourceType() {
return dataSourceType;
}

/**
* Optional. Immutable. Source of the upload data
* @param dataSourceType dataSourceType or {@code null} for none
*/
public ContactIdInfo setDataSourceType(java.lang.String dataSourceType) {
this.dataSourceType = dataSourceType;
return this;
}

/**
* Output only. Match rate for customer match user lists.
* @return value or {@code null} for none
*/
public java.lang.Integer getMatchRatePercentage() {
return matchRatePercentage;
}

/**
* Output only. Match rate for customer match user lists.
* @param matchRatePercentage matchRatePercentage or {@code null} for none
*/
public ContactIdInfo setMatchRatePercentage(java.lang.Integer matchRatePercentage) {
this.matchRatePercentage = matchRatePercentage;
return this;
}

@Override
public ContactIdInfo set(String fieldName, Object value) {
return (ContactIdInfo) super.set(fieldName, value);
}

@Override
public ContactIdInfo clone() {
return (ContactIdInfo) super.clone();
}

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
/*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
* in compliance with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the License
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
* or implied. See the License for the specific language governing permissions and limitations under
* the License.
*/
/*
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
* Modify at your own risk.
*/

package com.google.api.services.datamanager.v1.model;

/**
* A generic empty message that you can re-use to avoid defining duplicated empty messages in your
* APIs. A typical example is to use it as the request or the response type of an API method. For
* instance: service Foo { rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty); }
*
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
* transmitted over HTTP when working with the Data Manager API. For a detailed explanation see:
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
* </p>
*
* @author Google, Inc.
*/
@SuppressWarnings("javadoc")
public final class Empty extends com.google.api.client.json.GenericJson {

@Override
public Empty set(String fieldName, Object value) {
return (Empty) super.set(fieldName, value);
}

@Override
public Empty clone() {
return (Empty) super.clone();
}

}
Loading
Loading