
com.tencent.ads.model.ReadTargetingSettingForAdgroup Maven / Gradle / Ivy
/*
* Marketing API
* Marketing API
*
* OpenAPI spec version: 1.3
*
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* Do not edit the class manually.
*/
package com.tencent.ads.model;
import com.google.gson.Gson;
import com.google.gson.annotations.SerializedName;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.util.ArrayList;
import java.util.List;
import java.util.Objects;
/** 定向详细设置 */
@ApiModel(description = "定向详细设置")
public class ReadTargetingSettingForAdgroup {
@SerializedName("age")
private List age = null;
@SerializedName("gender")
private List gender = null;
@SerializedName("education")
private List education = null;
@SerializedName("marital_status")
private List maritalStatus = null;
@SerializedName("working_status")
private List workingStatus = null;
@SerializedName("geo_location")
private GeoLocations geoLocation = null;
@SerializedName("user_os")
private List userOs = null;
@SerializedName("new_device")
private List newDevice = null;
@SerializedName("device_price")
private List devicePrice = null;
@SerializedName("device_brand_model")
private DeviceBrandModel deviceBrandModel = null;
@SerializedName("network_type")
private List networkType = null;
@SerializedName("network_operator")
private List networkOperator = null;
@SerializedName("network_scene")
private List networkScene = null;
@SerializedName("dressing_index")
private List dressingIndex = null;
@SerializedName("uv_index")
private List uvIndex = null;
@SerializedName("makeup_index")
private List makeupIndex = null;
@SerializedName("climate")
private List climate = null;
@SerializedName("temperature")
private List temperature = null;
@SerializedName("air_quality_index")
private List airQualityIndex = null;
@SerializedName("app_install_status")
private List appInstallStatus = null;
@SerializedName("consumption_status")
private List consumptionStatus = null;
@SerializedName("game_consumption_level")
private List gameConsumptionLevel = null;
@SerializedName("residential_community_price")
private List residentialCommunityPrice = null;
@SerializedName("financial_situation")
private List financialSituation = null;
@SerializedName("consumption_type")
private List consumptionType = null;
@SerializedName("wechat_ad_behavior")
private WechatAdBehavior wechatAdBehavior = null;
@SerializedName("custom_audience")
private List customAudience = null;
@SerializedName("excluded_custom_audience")
private List excludedCustomAudience = null;
@SerializedName("behavior_or_interest")
private BehaviorOrInterest behaviorOrInterest = null;
@SerializedName("wechat_official_account_category")
private List wechatOfficialAccountCategory = null;
@SerializedName("mobile_union_category")
private List mobileUnionCategory = null;
@SerializedName("business_interest")
private List businessInterest = null;
@SerializedName("keyword")
private Keyword keyword = null;
@SerializedName("app_behavior")
private AppBehavior appBehavior = null;
@SerializedName("paid_user")
private List paidUser = null;
@SerializedName("deprecated_custom_audience")
private List deprecatedCustomAudience = null;
@SerializedName("deprecated_excluded_custom_audience")
private List deprecatedExcludedCustomAudience = null;
@SerializedName("deprecated_region")
private List deprecatedRegion = null;
@SerializedName("mini_game_qq_status")
private List miniGameQqStatus = null;
@SerializedName("excluded_converted_audience")
private ExcludedConvertedAudienceStruct excludedConvertedAudience = null;
public ReadTargetingSettingForAdgroup age(List age) {
this.age = age;
return this;
}
public ReadTargetingSettingForAdgroup addAgeItem(AgeStruct ageItem) {
if (this.age == null) {
this.age = new ArrayList();
}
this.age.add(ageItem);
return this;
}
/**
* Get age
*
* @return age
*/
@ApiModelProperty(value = "")
public List getAge() {
return age;
}
public void setAge(List age) {
this.age = age;
}
public ReadTargetingSettingForAdgroup gender(List gender) {
this.gender = gender;
return this;
}
public ReadTargetingSettingForAdgroup addGenderItem(String genderItem) {
if (this.gender == null) {
this.gender = new ArrayList();
}
this.gender.add(genderItem);
return this;
}
/**
* Get gender
*
* @return gender
*/
@ApiModelProperty(value = "")
public List getGender() {
return gender;
}
public void setGender(List gender) {
this.gender = gender;
}
public ReadTargetingSettingForAdgroup education(List education) {
this.education = education;
return this;
}
public ReadTargetingSettingForAdgroup addEducationItem(String educationItem) {
if (this.education == null) {
this.education = new ArrayList();
}
this.education.add(educationItem);
return this;
}
/**
* Get education
*
* @return education
*/
@ApiModelProperty(value = "")
public List getEducation() {
return education;
}
public void setEducation(List education) {
this.education = education;
}
public ReadTargetingSettingForAdgroup maritalStatus(List maritalStatus) {
this.maritalStatus = maritalStatus;
return this;
}
public ReadTargetingSettingForAdgroup addMaritalStatusItem(String maritalStatusItem) {
if (this.maritalStatus == null) {
this.maritalStatus = new ArrayList();
}
this.maritalStatus.add(maritalStatusItem);
return this;
}
/**
* Get maritalStatus
*
* @return maritalStatus
*/
@ApiModelProperty(value = "")
public List getMaritalStatus() {
return maritalStatus;
}
public void setMaritalStatus(List maritalStatus) {
this.maritalStatus = maritalStatus;
}
public ReadTargetingSettingForAdgroup workingStatus(List workingStatus) {
this.workingStatus = workingStatus;
return this;
}
public ReadTargetingSettingForAdgroup addWorkingStatusItem(String workingStatusItem) {
if (this.workingStatus == null) {
this.workingStatus = new ArrayList();
}
this.workingStatus.add(workingStatusItem);
return this;
}
/**
* Get workingStatus
*
* @return workingStatus
*/
@ApiModelProperty(value = "")
public List getWorkingStatus() {
return workingStatus;
}
public void setWorkingStatus(List workingStatus) {
this.workingStatus = workingStatus;
}
public ReadTargetingSettingForAdgroup geoLocation(GeoLocations geoLocation) {
this.geoLocation = geoLocation;
return this;
}
/**
* Get geoLocation
*
* @return geoLocation
*/
@ApiModelProperty(value = "")
public GeoLocations getGeoLocation() {
return geoLocation;
}
public void setGeoLocation(GeoLocations geoLocation) {
this.geoLocation = geoLocation;
}
public ReadTargetingSettingForAdgroup userOs(List userOs) {
this.userOs = userOs;
return this;
}
public ReadTargetingSettingForAdgroup addUserOsItem(String userOsItem) {
if (this.userOs == null) {
this.userOs = new ArrayList();
}
this.userOs.add(userOsItem);
return this;
}
/**
* Get userOs
*
* @return userOs
*/
@ApiModelProperty(value = "")
public List getUserOs() {
return userOs;
}
public void setUserOs(List userOs) {
this.userOs = userOs;
}
public ReadTargetingSettingForAdgroup newDevice(List newDevice) {
this.newDevice = newDevice;
return this;
}
public ReadTargetingSettingForAdgroup addNewDeviceItem(String newDeviceItem) {
if (this.newDevice == null) {
this.newDevice = new ArrayList();
}
this.newDevice.add(newDeviceItem);
return this;
}
/**
* Get newDevice
*
* @return newDevice
*/
@ApiModelProperty(value = "")
public List getNewDevice() {
return newDevice;
}
public void setNewDevice(List newDevice) {
this.newDevice = newDevice;
}
public ReadTargetingSettingForAdgroup devicePrice(List devicePrice) {
this.devicePrice = devicePrice;
return this;
}
public ReadTargetingSettingForAdgroup addDevicePriceItem(String devicePriceItem) {
if (this.devicePrice == null) {
this.devicePrice = new ArrayList();
}
this.devicePrice.add(devicePriceItem);
return this;
}
/**
* Get devicePrice
*
* @return devicePrice
*/
@ApiModelProperty(value = "")
public List getDevicePrice() {
return devicePrice;
}
public void setDevicePrice(List devicePrice) {
this.devicePrice = devicePrice;
}
public ReadTargetingSettingForAdgroup deviceBrandModel(DeviceBrandModel deviceBrandModel) {
this.deviceBrandModel = deviceBrandModel;
return this;
}
/**
* Get deviceBrandModel
*
* @return deviceBrandModel
*/
@ApiModelProperty(value = "")
public DeviceBrandModel getDeviceBrandModel() {
return deviceBrandModel;
}
public void setDeviceBrandModel(DeviceBrandModel deviceBrandModel) {
this.deviceBrandModel = deviceBrandModel;
}
public ReadTargetingSettingForAdgroup networkType(List networkType) {
this.networkType = networkType;
return this;
}
public ReadTargetingSettingForAdgroup addNetworkTypeItem(String networkTypeItem) {
if (this.networkType == null) {
this.networkType = new ArrayList();
}
this.networkType.add(networkTypeItem);
return this;
}
/**
* Get networkType
*
* @return networkType
*/
@ApiModelProperty(value = "")
public List getNetworkType() {
return networkType;
}
public void setNetworkType(List networkType) {
this.networkType = networkType;
}
public ReadTargetingSettingForAdgroup networkOperator(List networkOperator) {
this.networkOperator = networkOperator;
return this;
}
public ReadTargetingSettingForAdgroup addNetworkOperatorItem(String networkOperatorItem) {
if (this.networkOperator == null) {
this.networkOperator = new ArrayList();
}
this.networkOperator.add(networkOperatorItem);
return this;
}
/**
* Get networkOperator
*
* @return networkOperator
*/
@ApiModelProperty(value = "")
public List getNetworkOperator() {
return networkOperator;
}
public void setNetworkOperator(List networkOperator) {
this.networkOperator = networkOperator;
}
public ReadTargetingSettingForAdgroup networkScene(List networkScene) {
this.networkScene = networkScene;
return this;
}
public ReadTargetingSettingForAdgroup addNetworkSceneItem(String networkSceneItem) {
if (this.networkScene == null) {
this.networkScene = new ArrayList();
}
this.networkScene.add(networkSceneItem);
return this;
}
/**
* Get networkScene
*
* @return networkScene
*/
@ApiModelProperty(value = "")
public List getNetworkScene() {
return networkScene;
}
public void setNetworkScene(List networkScene) {
this.networkScene = networkScene;
}
public ReadTargetingSettingForAdgroup dressingIndex(List dressingIndex) {
this.dressingIndex = dressingIndex;
return this;
}
public ReadTargetingSettingForAdgroup addDressingIndexItem(String dressingIndexItem) {
if (this.dressingIndex == null) {
this.dressingIndex = new ArrayList();
}
this.dressingIndex.add(dressingIndexItem);
return this;
}
/**
* Get dressingIndex
*
* @return dressingIndex
*/
@ApiModelProperty(value = "")
public List getDressingIndex() {
return dressingIndex;
}
public void setDressingIndex(List dressingIndex) {
this.dressingIndex = dressingIndex;
}
public ReadTargetingSettingForAdgroup uvIndex(List uvIndex) {
this.uvIndex = uvIndex;
return this;
}
public ReadTargetingSettingForAdgroup addUvIndexItem(String uvIndexItem) {
if (this.uvIndex == null) {
this.uvIndex = new ArrayList();
}
this.uvIndex.add(uvIndexItem);
return this;
}
/**
* Get uvIndex
*
* @return uvIndex
*/
@ApiModelProperty(value = "")
public List getUvIndex() {
return uvIndex;
}
public void setUvIndex(List uvIndex) {
this.uvIndex = uvIndex;
}
public ReadTargetingSettingForAdgroup makeupIndex(List makeupIndex) {
this.makeupIndex = makeupIndex;
return this;
}
public ReadTargetingSettingForAdgroup addMakeupIndexItem(String makeupIndexItem) {
if (this.makeupIndex == null) {
this.makeupIndex = new ArrayList();
}
this.makeupIndex.add(makeupIndexItem);
return this;
}
/**
* Get makeupIndex
*
* @return makeupIndex
*/
@ApiModelProperty(value = "")
public List getMakeupIndex() {
return makeupIndex;
}
public void setMakeupIndex(List makeupIndex) {
this.makeupIndex = makeupIndex;
}
public ReadTargetingSettingForAdgroup climate(List climate) {
this.climate = climate;
return this;
}
public ReadTargetingSettingForAdgroup addClimateItem(String climateItem) {
if (this.climate == null) {
this.climate = new ArrayList();
}
this.climate.add(climateItem);
return this;
}
/**
* Get climate
*
* @return climate
*/
@ApiModelProperty(value = "")
public List getClimate() {
return climate;
}
public void setClimate(List climate) {
this.climate = climate;
}
public ReadTargetingSettingForAdgroup temperature(List temperature) {
this.temperature = temperature;
return this;
}
public ReadTargetingSettingForAdgroup addTemperatureItem(TemperatureStruct temperatureItem) {
if (this.temperature == null) {
this.temperature = new ArrayList();
}
this.temperature.add(temperatureItem);
return this;
}
/**
* Get temperature
*
* @return temperature
*/
@ApiModelProperty(value = "")
public List getTemperature() {
return temperature;
}
public void setTemperature(List temperature) {
this.temperature = temperature;
}
public ReadTargetingSettingForAdgroup airQualityIndex(List airQualityIndex) {
this.airQualityIndex = airQualityIndex;
return this;
}
public ReadTargetingSettingForAdgroup addAirQualityIndexItem(String airQualityIndexItem) {
if (this.airQualityIndex == null) {
this.airQualityIndex = new ArrayList();
}
this.airQualityIndex.add(airQualityIndexItem);
return this;
}
/**
* Get airQualityIndex
*
* @return airQualityIndex
*/
@ApiModelProperty(value = "")
public List getAirQualityIndex() {
return airQualityIndex;
}
public void setAirQualityIndex(List airQualityIndex) {
this.airQualityIndex = airQualityIndex;
}
public ReadTargetingSettingForAdgroup appInstallStatus(List appInstallStatus) {
this.appInstallStatus = appInstallStatus;
return this;
}
public ReadTargetingSettingForAdgroup addAppInstallStatusItem(String appInstallStatusItem) {
if (this.appInstallStatus == null) {
this.appInstallStatus = new ArrayList();
}
this.appInstallStatus.add(appInstallStatusItem);
return this;
}
/**
* Get appInstallStatus
*
* @return appInstallStatus
*/
@ApiModelProperty(value = "")
public List getAppInstallStatus() {
return appInstallStatus;
}
public void setAppInstallStatus(List appInstallStatus) {
this.appInstallStatus = appInstallStatus;
}
public ReadTargetingSettingForAdgroup consumptionStatus(List consumptionStatus) {
this.consumptionStatus = consumptionStatus;
return this;
}
public ReadTargetingSettingForAdgroup addConsumptionStatusItem(String consumptionStatusItem) {
if (this.consumptionStatus == null) {
this.consumptionStatus = new ArrayList();
}
this.consumptionStatus.add(consumptionStatusItem);
return this;
}
/**
* Get consumptionStatus
*
* @return consumptionStatus
*/
@ApiModelProperty(value = "")
public List getConsumptionStatus() {
return consumptionStatus;
}
public void setConsumptionStatus(List consumptionStatus) {
this.consumptionStatus = consumptionStatus;
}
public ReadTargetingSettingForAdgroup gameConsumptionLevel(List gameConsumptionLevel) {
this.gameConsumptionLevel = gameConsumptionLevel;
return this;
}
public ReadTargetingSettingForAdgroup addGameConsumptionLevelItem(
String gameConsumptionLevelItem) {
if (this.gameConsumptionLevel == null) {
this.gameConsumptionLevel = new ArrayList();
}
this.gameConsumptionLevel.add(gameConsumptionLevelItem);
return this;
}
/**
* Get gameConsumptionLevel
*
* @return gameConsumptionLevel
*/
@ApiModelProperty(value = "")
public List getGameConsumptionLevel() {
return gameConsumptionLevel;
}
public void setGameConsumptionLevel(List gameConsumptionLevel) {
this.gameConsumptionLevel = gameConsumptionLevel;
}
public ReadTargetingSettingForAdgroup residentialCommunityPrice(
List residentialCommunityPrice) {
this.residentialCommunityPrice = residentialCommunityPrice;
return this;
}
public ReadTargetingSettingForAdgroup addResidentialCommunityPriceItem(
ResidentialCommunityPriceStruct residentialCommunityPriceItem) {
if (this.residentialCommunityPrice == null) {
this.residentialCommunityPrice = new ArrayList();
}
this.residentialCommunityPrice.add(residentialCommunityPriceItem);
return this;
}
/**
* Get residentialCommunityPrice
*
* @return residentialCommunityPrice
*/
@ApiModelProperty(value = "")
public List getResidentialCommunityPrice() {
return residentialCommunityPrice;
}
public void setResidentialCommunityPrice(
List residentialCommunityPrice) {
this.residentialCommunityPrice = residentialCommunityPrice;
}
public ReadTargetingSettingForAdgroup financialSituation(List financialSituation) {
this.financialSituation = financialSituation;
return this;
}
public ReadTargetingSettingForAdgroup addFinancialSituationItem(String financialSituationItem) {
if (this.financialSituation == null) {
this.financialSituation = new ArrayList();
}
this.financialSituation.add(financialSituationItem);
return this;
}
/**
* Get financialSituation
*
* @return financialSituation
*/
@ApiModelProperty(value = "")
public List getFinancialSituation() {
return financialSituation;
}
public void setFinancialSituation(List financialSituation) {
this.financialSituation = financialSituation;
}
public ReadTargetingSettingForAdgroup consumptionType(List consumptionType) {
this.consumptionType = consumptionType;
return this;
}
public ReadTargetingSettingForAdgroup addConsumptionTypeItem(String consumptionTypeItem) {
if (this.consumptionType == null) {
this.consumptionType = new ArrayList();
}
this.consumptionType.add(consumptionTypeItem);
return this;
}
/**
* Get consumptionType
*
* @return consumptionType
*/
@ApiModelProperty(value = "")
public List getConsumptionType() {
return consumptionType;
}
public void setConsumptionType(List consumptionType) {
this.consumptionType = consumptionType;
}
public ReadTargetingSettingForAdgroup wechatAdBehavior(WechatAdBehavior wechatAdBehavior) {
this.wechatAdBehavior = wechatAdBehavior;
return this;
}
/**
* Get wechatAdBehavior
*
* @return wechatAdBehavior
*/
@ApiModelProperty(value = "")
public WechatAdBehavior getWechatAdBehavior() {
return wechatAdBehavior;
}
public void setWechatAdBehavior(WechatAdBehavior wechatAdBehavior) {
this.wechatAdBehavior = wechatAdBehavior;
}
public ReadTargetingSettingForAdgroup customAudience(List customAudience) {
this.customAudience = customAudience;
return this;
}
public ReadTargetingSettingForAdgroup addCustomAudienceItem(Long customAudienceItem) {
if (this.customAudience == null) {
this.customAudience = new ArrayList();
}
this.customAudience.add(customAudienceItem);
return this;
}
/**
* Get customAudience
*
* @return customAudience
*/
@ApiModelProperty(value = "")
public List getCustomAudience() {
return customAudience;
}
public void setCustomAudience(List customAudience) {
this.customAudience = customAudience;
}
public ReadTargetingSettingForAdgroup excludedCustomAudience(List excludedCustomAudience) {
this.excludedCustomAudience = excludedCustomAudience;
return this;
}
public ReadTargetingSettingForAdgroup addExcludedCustomAudienceItem(
Long excludedCustomAudienceItem) {
if (this.excludedCustomAudience == null) {
this.excludedCustomAudience = new ArrayList();
}
this.excludedCustomAudience.add(excludedCustomAudienceItem);
return this;
}
/**
* Get excludedCustomAudience
*
* @return excludedCustomAudience
*/
@ApiModelProperty(value = "")
public List getExcludedCustomAudience() {
return excludedCustomAudience;
}
public void setExcludedCustomAudience(List excludedCustomAudience) {
this.excludedCustomAudience = excludedCustomAudience;
}
public ReadTargetingSettingForAdgroup behaviorOrInterest(BehaviorOrInterest behaviorOrInterest) {
this.behaviorOrInterest = behaviorOrInterest;
return this;
}
/**
* Get behaviorOrInterest
*
* @return behaviorOrInterest
*/
@ApiModelProperty(value = "")
public BehaviorOrInterest getBehaviorOrInterest() {
return behaviorOrInterest;
}
public void setBehaviorOrInterest(BehaviorOrInterest behaviorOrInterest) {
this.behaviorOrInterest = behaviorOrInterest;
}
public ReadTargetingSettingForAdgroup wechatOfficialAccountCategory(
List wechatOfficialAccountCategory) {
this.wechatOfficialAccountCategory = wechatOfficialAccountCategory;
return this;
}
public ReadTargetingSettingForAdgroup addWechatOfficialAccountCategoryItem(
Long wechatOfficialAccountCategoryItem) {
if (this.wechatOfficialAccountCategory == null) {
this.wechatOfficialAccountCategory = new ArrayList();
}
this.wechatOfficialAccountCategory.add(wechatOfficialAccountCategoryItem);
return this;
}
/**
* Get wechatOfficialAccountCategory
*
* @return wechatOfficialAccountCategory
*/
@ApiModelProperty(value = "")
public List getWechatOfficialAccountCategory() {
return wechatOfficialAccountCategory;
}
public void setWechatOfficialAccountCategory(List wechatOfficialAccountCategory) {
this.wechatOfficialAccountCategory = wechatOfficialAccountCategory;
}
public ReadTargetingSettingForAdgroup mobileUnionCategory(List mobileUnionCategory) {
this.mobileUnionCategory = mobileUnionCategory;
return this;
}
public ReadTargetingSettingForAdgroup addMobileUnionCategoryItem(Long mobileUnionCategoryItem) {
if (this.mobileUnionCategory == null) {
this.mobileUnionCategory = new ArrayList();
}
this.mobileUnionCategory.add(mobileUnionCategoryItem);
return this;
}
/**
* Get mobileUnionCategory
*
* @return mobileUnionCategory
*/
@ApiModelProperty(value = "")
public List getMobileUnionCategory() {
return mobileUnionCategory;
}
public void setMobileUnionCategory(List mobileUnionCategory) {
this.mobileUnionCategory = mobileUnionCategory;
}
public ReadTargetingSettingForAdgroup businessInterest(List businessInterest) {
this.businessInterest = businessInterest;
return this;
}
public ReadTargetingSettingForAdgroup addBusinessInterestItem(Long businessInterestItem) {
if (this.businessInterest == null) {
this.businessInterest = new ArrayList();
}
this.businessInterest.add(businessInterestItem);
return this;
}
/**
* Get businessInterest
*
* @return businessInterest
*/
@ApiModelProperty(value = "")
public List getBusinessInterest() {
return businessInterest;
}
public void setBusinessInterest(List businessInterest) {
this.businessInterest = businessInterest;
}
public ReadTargetingSettingForAdgroup keyword(Keyword keyword) {
this.keyword = keyword;
return this;
}
/**
* Get keyword
*
* @return keyword
*/
@ApiModelProperty(value = "")
public Keyword getKeyword() {
return keyword;
}
public void setKeyword(Keyword keyword) {
this.keyword = keyword;
}
public ReadTargetingSettingForAdgroup appBehavior(AppBehavior appBehavior) {
this.appBehavior = appBehavior;
return this;
}
/**
* Get appBehavior
*
* @return appBehavior
*/
@ApiModelProperty(value = "")
public AppBehavior getAppBehavior() {
return appBehavior;
}
public void setAppBehavior(AppBehavior appBehavior) {
this.appBehavior = appBehavior;
}
public ReadTargetingSettingForAdgroup paidUser(List paidUser) {
this.paidUser = paidUser;
return this;
}
public ReadTargetingSettingForAdgroup addPaidUserItem(String paidUserItem) {
if (this.paidUser == null) {
this.paidUser = new ArrayList();
}
this.paidUser.add(paidUserItem);
return this;
}
/**
* Get paidUser
*
* @return paidUser
*/
@ApiModelProperty(value = "")
public List getPaidUser() {
return paidUser;
}
public void setPaidUser(List paidUser) {
this.paidUser = paidUser;
}
public ReadTargetingSettingForAdgroup deprecatedCustomAudience(
List deprecatedCustomAudience) {
this.deprecatedCustomAudience = deprecatedCustomAudience;
return this;
}
public ReadTargetingSettingForAdgroup addDeprecatedCustomAudienceItem(
Long deprecatedCustomAudienceItem) {
if (this.deprecatedCustomAudience == null) {
this.deprecatedCustomAudience = new ArrayList();
}
this.deprecatedCustomAudience.add(deprecatedCustomAudienceItem);
return this;
}
/**
* Get deprecatedCustomAudience
*
* @return deprecatedCustomAudience
*/
@ApiModelProperty(value = "")
public List getDeprecatedCustomAudience() {
return deprecatedCustomAudience;
}
public void setDeprecatedCustomAudience(List deprecatedCustomAudience) {
this.deprecatedCustomAudience = deprecatedCustomAudience;
}
public ReadTargetingSettingForAdgroup deprecatedExcludedCustomAudience(
List deprecatedExcludedCustomAudience) {
this.deprecatedExcludedCustomAudience = deprecatedExcludedCustomAudience;
return this;
}
public ReadTargetingSettingForAdgroup addDeprecatedExcludedCustomAudienceItem(
Long deprecatedExcludedCustomAudienceItem) {
if (this.deprecatedExcludedCustomAudience == null) {
this.deprecatedExcludedCustomAudience = new ArrayList();
}
this.deprecatedExcludedCustomAudience.add(deprecatedExcludedCustomAudienceItem);
return this;
}
/**
* Get deprecatedExcludedCustomAudience
*
* @return deprecatedExcludedCustomAudience
*/
@ApiModelProperty(value = "")
public List getDeprecatedExcludedCustomAudience() {
return deprecatedExcludedCustomAudience;
}
public void setDeprecatedExcludedCustomAudience(List deprecatedExcludedCustomAudience) {
this.deprecatedExcludedCustomAudience = deprecatedExcludedCustomAudience;
}
public ReadTargetingSettingForAdgroup deprecatedRegion(List deprecatedRegion) {
this.deprecatedRegion = deprecatedRegion;
return this;
}
public ReadTargetingSettingForAdgroup addDeprecatedRegionItem(Long deprecatedRegionItem) {
if (this.deprecatedRegion == null) {
this.deprecatedRegion = new ArrayList();
}
this.deprecatedRegion.add(deprecatedRegionItem);
return this;
}
/**
* Get deprecatedRegion
*
* @return deprecatedRegion
*/
@ApiModelProperty(value = "")
public List getDeprecatedRegion() {
return deprecatedRegion;
}
public void setDeprecatedRegion(List deprecatedRegion) {
this.deprecatedRegion = deprecatedRegion;
}
public ReadTargetingSettingForAdgroup miniGameQqStatus(List miniGameQqStatus) {
this.miniGameQqStatus = miniGameQqStatus;
return this;
}
public ReadTargetingSettingForAdgroup addMiniGameQqStatusItem(String miniGameQqStatusItem) {
if (this.miniGameQqStatus == null) {
this.miniGameQqStatus = new ArrayList();
}
this.miniGameQqStatus.add(miniGameQqStatusItem);
return this;
}
/**
* Get miniGameQqStatus
*
* @return miniGameQqStatus
*/
@ApiModelProperty(value = "")
public List getMiniGameQqStatus() {
return miniGameQqStatus;
}
public void setMiniGameQqStatus(List miniGameQqStatus) {
this.miniGameQqStatus = miniGameQqStatus;
}
public ReadTargetingSettingForAdgroup excludedConvertedAudience(
ExcludedConvertedAudienceStruct excludedConvertedAudience) {
this.excludedConvertedAudience = excludedConvertedAudience;
return this;
}
/**
* Get excludedConvertedAudience
*
* @return excludedConvertedAudience
*/
@ApiModelProperty(value = "")
public ExcludedConvertedAudienceStruct getExcludedConvertedAudience() {
return excludedConvertedAudience;
}
public void setExcludedConvertedAudience(
ExcludedConvertedAudienceStruct excludedConvertedAudience) {
this.excludedConvertedAudience = excludedConvertedAudience;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
ReadTargetingSettingForAdgroup readTargetingSettingForAdgroup =
(ReadTargetingSettingForAdgroup) o;
return Objects.equals(this.age, readTargetingSettingForAdgroup.age)
&& Objects.equals(this.gender, readTargetingSettingForAdgroup.gender)
&& Objects.equals(this.education, readTargetingSettingForAdgroup.education)
&& Objects.equals(this.maritalStatus, readTargetingSettingForAdgroup.maritalStatus)
&& Objects.equals(this.workingStatus, readTargetingSettingForAdgroup.workingStatus)
&& Objects.equals(this.geoLocation, readTargetingSettingForAdgroup.geoLocation)
&& Objects.equals(this.userOs, readTargetingSettingForAdgroup.userOs)
&& Objects.equals(this.newDevice, readTargetingSettingForAdgroup.newDevice)
&& Objects.equals(this.devicePrice, readTargetingSettingForAdgroup.devicePrice)
&& Objects.equals(this.deviceBrandModel, readTargetingSettingForAdgroup.deviceBrandModel)
&& Objects.equals(this.networkType, readTargetingSettingForAdgroup.networkType)
&& Objects.equals(this.networkOperator, readTargetingSettingForAdgroup.networkOperator)
&& Objects.equals(this.networkScene, readTargetingSettingForAdgroup.networkScene)
&& Objects.equals(this.dressingIndex, readTargetingSettingForAdgroup.dressingIndex)
&& Objects.equals(this.uvIndex, readTargetingSettingForAdgroup.uvIndex)
&& Objects.equals(this.makeupIndex, readTargetingSettingForAdgroup.makeupIndex)
&& Objects.equals(this.climate, readTargetingSettingForAdgroup.climate)
&& Objects.equals(this.temperature, readTargetingSettingForAdgroup.temperature)
&& Objects.equals(this.airQualityIndex, readTargetingSettingForAdgroup.airQualityIndex)
&& Objects.equals(this.appInstallStatus, readTargetingSettingForAdgroup.appInstallStatus)
&& Objects.equals(this.consumptionStatus, readTargetingSettingForAdgroup.consumptionStatus)
&& Objects.equals(
this.gameConsumptionLevel, readTargetingSettingForAdgroup.gameConsumptionLevel)
&& Objects.equals(
this.residentialCommunityPrice,
readTargetingSettingForAdgroup.residentialCommunityPrice)
&& Objects.equals(
this.financialSituation, readTargetingSettingForAdgroup.financialSituation)
&& Objects.equals(this.consumptionType, readTargetingSettingForAdgroup.consumptionType)
&& Objects.equals(this.wechatAdBehavior, readTargetingSettingForAdgroup.wechatAdBehavior)
&& Objects.equals(this.customAudience, readTargetingSettingForAdgroup.customAudience)
&& Objects.equals(
this.excludedCustomAudience, readTargetingSettingForAdgroup.excludedCustomAudience)
&& Objects.equals(
this.behaviorOrInterest, readTargetingSettingForAdgroup.behaviorOrInterest)
&& Objects.equals(
this.wechatOfficialAccountCategory,
readTargetingSettingForAdgroup.wechatOfficialAccountCategory)
&& Objects.equals(
this.mobileUnionCategory, readTargetingSettingForAdgroup.mobileUnionCategory)
&& Objects.equals(this.businessInterest, readTargetingSettingForAdgroup.businessInterest)
&& Objects.equals(this.keyword, readTargetingSettingForAdgroup.keyword)
&& Objects.equals(this.appBehavior, readTargetingSettingForAdgroup.appBehavior)
&& Objects.equals(this.paidUser, readTargetingSettingForAdgroup.paidUser)
&& Objects.equals(
this.deprecatedCustomAudience, readTargetingSettingForAdgroup.deprecatedCustomAudience)
&& Objects.equals(
this.deprecatedExcludedCustomAudience,
readTargetingSettingForAdgroup.deprecatedExcludedCustomAudience)
&& Objects.equals(this.deprecatedRegion, readTargetingSettingForAdgroup.deprecatedRegion)
&& Objects.equals(this.miniGameQqStatus, readTargetingSettingForAdgroup.miniGameQqStatus)
&& Objects.equals(
this.excludedConvertedAudience,
readTargetingSettingForAdgroup.excludedConvertedAudience);
}
@Override
public int hashCode() {
return Objects.hash(
age,
gender,
education,
maritalStatus,
workingStatus,
geoLocation,
userOs,
newDevice,
devicePrice,
deviceBrandModel,
networkType,
networkOperator,
networkScene,
dressingIndex,
uvIndex,
makeupIndex,
climate,
temperature,
airQualityIndex,
appInstallStatus,
consumptionStatus,
gameConsumptionLevel,
residentialCommunityPrice,
financialSituation,
consumptionType,
wechatAdBehavior,
customAudience,
excludedCustomAudience,
behaviorOrInterest,
wechatOfficialAccountCategory,
mobileUnionCategory,
businessInterest,
keyword,
appBehavior,
paidUser,
deprecatedCustomAudience,
deprecatedExcludedCustomAudience,
deprecatedRegion,
miniGameQqStatus,
excludedConvertedAudience);
}
@Override
public String toString() {
Gson gson = new Gson();
return gson.toJson(this);
}
/**
* 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