com.google.api.services.realtimebidding.v1.model.AdTechnologyProviders Maven / Gradle / Ivy
/*
* 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.realtimebidding.v1.model;
/**
* The list of detected Ad Technology Providers for this creative. Bids placed for inventory that
* will serve to EEA or UK users are expected to comply with GDPR requirements. You must ensure that
* the creatives used in such bids should contain only user consented ad technology providers as
* indicated in the bid request. Google reserves the right to filter non-compliant bids. User
* consented ad technology providers can be found in the [Google
* Protocol](https://developers.google.com/authorized-buyers/rtb/downloads/realtime-bidding-proto)
* with the `BidRequest.adslot.consented_providers_settings` field, and can be found as an [OpenRTB
* extension](https://developers.google.com/authorized-buyers/rtb/downloads/openrtb-adx-proto) with
* the `BidRequest.user.ext.consented_providers_settings` and `BidRequest.user.ext.consent` fields.
* See https://support.google.com/authorizedbuyers/answer/9789378 for additional information about
* the Google TCF v2 integration.
*
* 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 Real-time Bidding API. For a detailed explanation
* see:
* https://developers.google.com/api-client-library/java/google-http-java-client/json
*
*
* @author Google, Inc.
*/
@SuppressWarnings("javadoc")
public final class AdTechnologyProviders extends com.google.api.client.json.GenericJson {
/**
* The detected IAB Global Vendor List (GVL) IDs for this creative. See the IAB Global Vendor List
* at https://vendor-list.consensu.org/v2/vendor-list.json for details about the vendors.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
private java.util.List detectedGvlIds;
/**
* The detected [Google Ad Tech Providers
* (ATP)](https://support.google.com/admanager/answer/9012903) for this creative. See
* https://storage.googleapis.com/adx-rtb-dictionaries/providers.csv for mapping of provider ID to
* provided name, a privacy policy URL, and a list of domains which can be attributed to the
* provider.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
private java.util.List detectedProviderIds;
/**
* Domains of detected unidentified ad technology providers (if any). You must ensure that the
* creatives used in bids placed for inventory that will serve to EEA or UK users does not contain
* unidentified ad technology providers. Google reserves the right to filter non-compliant bids.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.util.List unidentifiedProviderDomains;
/**
* The detected IAB Global Vendor List (GVL) IDs for this creative. See the IAB Global Vendor List
* at https://vendor-list.consensu.org/v2/vendor-list.json for details about the vendors.
* @return value or {@code null} for none
*/
public java.util.List getDetectedGvlIds() {
return detectedGvlIds;
}
/**
* The detected IAB Global Vendor List (GVL) IDs for this creative. See the IAB Global Vendor List
* at https://vendor-list.consensu.org/v2/vendor-list.json for details about the vendors.
* @param detectedGvlIds detectedGvlIds or {@code null} for none
*/
public AdTechnologyProviders setDetectedGvlIds(java.util.List detectedGvlIds) {
this.detectedGvlIds = detectedGvlIds;
return this;
}
/**
* The detected [Google Ad Tech Providers
* (ATP)](https://support.google.com/admanager/answer/9012903) for this creative. See
* https://storage.googleapis.com/adx-rtb-dictionaries/providers.csv for mapping of provider ID to
* provided name, a privacy policy URL, and a list of domains which can be attributed to the
* provider.
* @return value or {@code null} for none
*/
public java.util.List getDetectedProviderIds() {
return detectedProviderIds;
}
/**
* The detected [Google Ad Tech Providers
* (ATP)](https://support.google.com/admanager/answer/9012903) for this creative. See
* https://storage.googleapis.com/adx-rtb-dictionaries/providers.csv for mapping of provider ID to
* provided name, a privacy policy URL, and a list of domains which can be attributed to the
* provider.
* @param detectedProviderIds detectedProviderIds or {@code null} for none
*/
public AdTechnologyProviders setDetectedProviderIds(java.util.List detectedProviderIds) {
this.detectedProviderIds = detectedProviderIds;
return this;
}
/**
* Domains of detected unidentified ad technology providers (if any). You must ensure that the
* creatives used in bids placed for inventory that will serve to EEA or UK users does not contain
* unidentified ad technology providers. Google reserves the right to filter non-compliant bids.
* @return value or {@code null} for none
*/
public java.util.List getUnidentifiedProviderDomains() {
return unidentifiedProviderDomains;
}
/**
* Domains of detected unidentified ad technology providers (if any). You must ensure that the
* creatives used in bids placed for inventory that will serve to EEA or UK users does not contain
* unidentified ad technology providers. Google reserves the right to filter non-compliant bids.
* @param unidentifiedProviderDomains unidentifiedProviderDomains or {@code null} for none
*/
public AdTechnologyProviders setUnidentifiedProviderDomains(java.util.List unidentifiedProviderDomains) {
this.unidentifiedProviderDomains = unidentifiedProviderDomains;
return this;
}
@Override
public AdTechnologyProviders set(String fieldName, Object value) {
return (AdTechnologyProviders) super.set(fieldName, value);
}
@Override
public AdTechnologyProviders clone() {
return (AdTechnologyProviders) super.clone();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy