com.criteo.marketing.model.IThrottlingConfiguration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of marketing.java-client Show documentation
Show all versions of marketing.java-client Show documentation
Criteo Marketing SDK for Java
/*
* Marketing API v.1.0
* IMPORTANT: This swagger links to Criteo production environment. Any test applied here will thus impact real campaigns.
*
* The version of the OpenAPI document: v.1.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.criteo.marketing.model;
import java.util.Objects;
import java.util.Arrays;
import com.criteo.marketing.model.ThrottlePolicy;
import com.google.gson.TypeAdapter;
import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
/**
* IThrottlingConfiguration
*/
public class IThrottlingConfiguration {
public static final String SERIALIZED_NAME_DEFAULT_THROTTLE_POLICIES = "defaultThrottlePolicies";
@SerializedName(SERIALIZED_NAME_DEFAULT_THROTTLE_POLICIES)
private List defaultThrottlePolicies = null;
public static final String SERIALIZED_NAME_ASSEMBLY = "assembly";
@SerializedName(SERIALIZED_NAME_ASSEMBLY)
private Object assembly;
public static final String SERIALIZED_NAME_ENABLED = "enabled";
@SerializedName(SERIALIZED_NAME_ENABLED)
private Boolean enabled;
/**
* Get defaultThrottlePolicies
* @return defaultThrottlePolicies
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public List getDefaultThrottlePolicies() {
return defaultThrottlePolicies;
}
/**
* Get assembly
* @return assembly
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public Object getAssembly() {
return assembly;
}
/**
* Get enabled
* @return enabled
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public Boolean getEnabled() {
return enabled;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
IThrottlingConfiguration ithrottlingConfiguration = (IThrottlingConfiguration) o;
return Objects.equals(this.defaultThrottlePolicies, ithrottlingConfiguration.defaultThrottlePolicies) &&
Objects.equals(this.assembly, ithrottlingConfiguration.assembly) &&
Objects.equals(this.enabled, ithrottlingConfiguration.enabled);
}
@Override
public int hashCode() {
return Objects.hash(defaultThrottlePolicies, assembly, enabled);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class IThrottlingConfiguration {\n");
sb.append(" defaultThrottlePolicies: ").append(toIndentedString(defaultThrottlePolicies)).append("\n");
sb.append(" assembly: ").append(toIndentedString(assembly)).append("\n");
sb.append(" enabled: ").append(toIndentedString(enabled)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy