![JAR search and dependency download from the Maven repository](/logo.png)
com.pdd.pop.sdk.http.api.pop.response.PddAdApiUnitBidQueryBaseLocationProfileResponse Maven / Gradle / Ivy
package com.pdd.pop.sdk.http.api.pop.response;
import com.pdd.pop.ext.fasterxml.jackson.annotation.JsonProperty;
import com.pdd.pop.sdk.http.PopBaseHttpResponse;
import java.util.List;
public class PddAdApiUnitBidQueryBaseLocationProfileResponse extends PopBaseHttpResponse {
/**
*
*/
@JsonProperty("response")
private Response response;
public Response getResponse() {
return response;
}
public static class Response {
/**
*
*/
@JsonProperty("errorCode")
private Integer errorCode;
/**
*
*/
@JsonProperty("errorMsg")
private String errorMsg;
/**
*
*/
@JsonProperty("result")
private List result;
/**
*
*/
@JsonProperty("success")
private Boolean success;
public Integer getErrorCode() {
return errorCode;
}
public String getErrorMsg() {
return errorMsg;
}
public List getResult() {
return result;
}
public Boolean getSuccess() {
return success;
}
}
public static class ResponseResultItem {
/**
* 资源位描述
*/
@JsonProperty("locationName")
private String locationName;
/**
* 资源位类型
*/
@JsonProperty("locationType")
private Integer locationType;
/**
* 资源位预估人群
*/
@JsonProperty("pvString")
private String pvString;
public String getLocationName() {
return locationName;
}
public Integer getLocationType() {
return locationType;
}
public String getPvString() {
return pvString;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy