com.google.api.services.realtimebidding.v1.model.HttpCookieEvidence 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;
/**
* Evidence for HTTP cookie-related policy violations.
*
* 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 HttpCookieEvidence extends com.google.api.client.json.GenericJson {
/**
* Names of cookies that violate Google policies. For TOO_MANY_COOKIES policy, this will be the
* cookie names of top domains with the largest number of cookies. For other policies, this will
* be all the cookie names that violate the policy.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.util.List cookieNames;
/**
* The largest number of cookies set by a creative. If this field is set, cookie_names above will
* be set to the cookie names of top domains with the largest number of cookies. This field will
* only be set for TOO_MANY_COOKIES policy.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.Integer maxCookieCount;
/**
* Names of cookies that violate Google policies. For TOO_MANY_COOKIES policy, this will be the
* cookie names of top domains with the largest number of cookies. For other policies, this will
* be all the cookie names that violate the policy.
* @return value or {@code null} for none
*/
public java.util.List getCookieNames() {
return cookieNames;
}
/**
* Names of cookies that violate Google policies. For TOO_MANY_COOKIES policy, this will be the
* cookie names of top domains with the largest number of cookies. For other policies, this will
* be all the cookie names that violate the policy.
* @param cookieNames cookieNames or {@code null} for none
*/
public HttpCookieEvidence setCookieNames(java.util.List cookieNames) {
this.cookieNames = cookieNames;
return this;
}
/**
* The largest number of cookies set by a creative. If this field is set, cookie_names above will
* be set to the cookie names of top domains with the largest number of cookies. This field will
* only be set for TOO_MANY_COOKIES policy.
* @return value or {@code null} for none
*/
public java.lang.Integer getMaxCookieCount() {
return maxCookieCount;
}
/**
* The largest number of cookies set by a creative. If this field is set, cookie_names above will
* be set to the cookie names of top domains with the largest number of cookies. This field will
* only be set for TOO_MANY_COOKIES policy.
* @param maxCookieCount maxCookieCount or {@code null} for none
*/
public HttpCookieEvidence setMaxCookieCount(java.lang.Integer maxCookieCount) {
this.maxCookieCount = maxCookieCount;
return this;
}
@Override
public HttpCookieEvidence set(String fieldName, Object value) {
return (HttpCookieEvidence) super.set(fieldName, value);
}
@Override
public HttpCookieEvidence clone() {
return (HttpCookieEvidence) super.clone();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy