![JAR search and dependency download from the Maven repository](/logo.png)
jp.co.yahoo.adsdisplayapi.v15.model.PlacementUrlListServiceUrlList Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ads-display-api-lib Show documentation
Show all versions of ads-display-api-lib Show documentation
Yahoo! JAPAN Ads Display Ads API library for Java
The newest version!
/*
* Yahoo!広告 ディスプレイ広告 API リファレンス / Yahoo! JAPAN Ads Display Ads API Reference
* Yahoo!広告 ディスプレイ広告 APIのWebサービスについて説明します。 Display Ads API Web Services supported in Yahoo! JAPAN Ads API.
*
* The version of the OpenAPI document: v15
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package jp.co.yahoo.adsdisplayapi.v15.model;
import java.util.Objects;
import java.util.Arrays;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import jp.co.yahoo.adsdisplayapi.v15.model.PlacementUrlListServiceUrlActiveFlg;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import com.fasterxml.jackson.annotation.JsonTypeName;
/**
* <div lang=\"ja\"> PlacementUrlListServiceUrlListオブジェクトは、URLを保持するオブジェクトです。<br> このフィールドは、ADD時に必須となり、SET時に省略可能となります。 </div> <div lang=\"en\"> The objects to keep url.<br> This field is required in ADD operation, and is optional in SET operation. </div>
*/
@ApiModel(description = " PlacementUrlListServiceUrlListオブジェクトは、URLを保持するオブジェクトです。
このフィールドは、ADD時に必須となり、SET時に省略可能となります。 The objects to keep url.
This field is required in ADD operation, and is optional in SET operation. ")
@JsonPropertyOrder({
PlacementUrlListServiceUrlList.JSON_PROPERTY_PLACEMENT_URL,
PlacementUrlListServiceUrlList.JSON_PROPERTY_URL_ACTIVE_FLG
})
@JsonTypeName("PlacementUrlListServiceUrlList")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
public class PlacementUrlListServiceUrlList {
public static final String JSON_PROPERTY_PLACEMENT_URL = "placementUrl";
private String placementUrl;
public static final String JSON_PROPERTY_URL_ACTIVE_FLG = "urlActiveFlg";
private PlacementUrlListServiceUrlActiveFlg urlActiveFlg;
public PlacementUrlListServiceUrlList() {
}
public PlacementUrlListServiceUrlList placementUrl(String placementUrl) {
this.placementUrl = placementUrl;
return this;
}
/**
* <div lang=\"ja\"> プレイスメントURLです。<br> このフィールドは、ADDおよびSET時に必須となります。 </div> <div lang=\"en\"> Url.<br> This field is required in ADD and SET operation. </div>
* @return placementUrl
**/
@javax.annotation.Nullable
@ApiModelProperty(value = " プレイスメントURLです。
このフィールドは、ADDおよびSET時に必須となります。 Url.
This field is required in ADD and SET operation. ")
@JsonProperty(JSON_PROPERTY_PLACEMENT_URL)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getPlacementUrl() {
return placementUrl;
}
@JsonProperty(JSON_PROPERTY_PLACEMENT_URL)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setPlacementUrl(String placementUrl) {
this.placementUrl = placementUrl;
}
public PlacementUrlListServiceUrlList urlActiveFlg(PlacementUrlListServiceUrlActiveFlg urlActiveFlg) {
this.urlActiveFlg = urlActiveFlg;
return this;
}
/**
* Get urlActiveFlg
* @return urlActiveFlg
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
@JsonProperty(JSON_PROPERTY_URL_ACTIVE_FLG)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public PlacementUrlListServiceUrlActiveFlg getUrlActiveFlg() {
return urlActiveFlg;
}
@JsonProperty(JSON_PROPERTY_URL_ACTIVE_FLG)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setUrlActiveFlg(PlacementUrlListServiceUrlActiveFlg urlActiveFlg) {
this.urlActiveFlg = urlActiveFlg;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
PlacementUrlListServiceUrlList placementUrlListServiceUrlList = (PlacementUrlListServiceUrlList) o;
return Objects.equals(this.placementUrl, placementUrlListServiceUrlList.placementUrl) &&
Objects.equals(this.urlActiveFlg, placementUrlListServiceUrlList.urlActiveFlg);
}
@Override
public int hashCode() {
return Objects.hash(placementUrl, urlActiveFlg);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class PlacementUrlListServiceUrlList {\n");
sb.append(" placementUrl: ").append(toIndentedString(placementUrl)).append("\n");
sb.append(" urlActiveFlg: ").append(toIndentedString(urlActiveFlg)).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(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy