All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jp.co.yahoo.adsdisplayapi.v13.model.GuaranteedAdGroupAdServiceInstreamAd Maven / Gradle / Ivy

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: v13 * * * 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.v13.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 java.util.ArrayList; import java.util.List; import jp.co.yahoo.adsdisplayapi.v13.model.GuaranteedAdGroupAdServiceCustomParameters; import jp.co.yahoo.adsdisplayapi.v13.model.GuaranteedAdGroupAdServiceDisplayUrlLevel; import com.fasterxml.jackson.annotation.JsonPropertyOrder; import com.fasterxml.jackson.annotation.JsonTypeName; /** * <div lang=\"ja\"> GuaranteedAdGroupAdServiceInstreamAdオブジェクトは、インストリーム広告の情報を表します。<br> このフィールドは、レスポンスの際に返却されますが、リクエストの際には無視されます。<br> </div> <div lang=\"en\"> GuaranteedAdGroupAdServiceInstreamAd object describes information of In-stream ad.<br> This field will be returned in the response, it will be ignored on input.<br> </div> */ @ApiModel(description = "
GuaranteedAdGroupAdServiceInstreamAdオブジェクトは、インストリーム広告の情報を表します。
このフィールドは、レスポンスの際に返却されますが、リクエストの際には無視されます。
GuaranteedAdGroupAdServiceInstreamAd object describes information of In-stream ad.
This field will be returned in the response, it will be ignored on input.
") @JsonPropertyOrder({ GuaranteedAdGroupAdServiceInstreamAd.JSON_PROPERTY_DISPLAY_URL, GuaranteedAdGroupAdServiceInstreamAd.JSON_PROPERTY_CUSTOM_PARAMETERS, GuaranteedAdGroupAdServiceInstreamAd.JSON_PROPERTY_DISPLAY_URL_LEVEL, GuaranteedAdGroupAdServiceInstreamAd.JSON_PROPERTY_FINAL_URL, GuaranteedAdGroupAdServiceInstreamAd.JSON_PROPERTY_SMARTPHONE_FINAL_URL, GuaranteedAdGroupAdServiceInstreamAd.JSON_PROPERTY_TRACKING_URL, GuaranteedAdGroupAdServiceInstreamAd.JSON_PROPERTY_HEADLINE, GuaranteedAdGroupAdServiceInstreamAd.JSON_PROPERTY_VIDEO25_PERCENT_BEACON_URLS, GuaranteedAdGroupAdServiceInstreamAd.JSON_PROPERTY_VIDEO50_PERCENT_BEACON_URLS, GuaranteedAdGroupAdServiceInstreamAd.JSON_PROPERTY_VIDEO75_PERCENT_BEACON_URLS, GuaranteedAdGroupAdServiceInstreamAd.JSON_PROPERTY_VIDEO_COMPLETE_BEACON_URLS, GuaranteedAdGroupAdServiceInstreamAd.JSON_PROPERTY_VIDEO_START_BEACON_URLS, GuaranteedAdGroupAdServiceInstreamAd.JSON_PROPERTY_ACTION_AFTER_AD_CLICKS }) @JsonTypeName("GuaranteedAdGroupAdServiceInstreamAd") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class GuaranteedAdGroupAdServiceInstreamAd { public static final String JSON_PROPERTY_DISPLAY_URL = "displayUrl"; private String displayUrl; public static final String JSON_PROPERTY_CUSTOM_PARAMETERS = "customParameters"; private GuaranteedAdGroupAdServiceCustomParameters customParameters; public static final String JSON_PROPERTY_DISPLAY_URL_LEVEL = "displayUrlLevel"; private GuaranteedAdGroupAdServiceDisplayUrlLevel displayUrlLevel; public static final String JSON_PROPERTY_FINAL_URL = "finalUrl"; private String finalUrl; public static final String JSON_PROPERTY_SMARTPHONE_FINAL_URL = "smartphoneFinalUrl"; private String smartphoneFinalUrl; public static final String JSON_PROPERTY_TRACKING_URL = "trackingUrl"; private String trackingUrl; public static final String JSON_PROPERTY_HEADLINE = "headline"; private String headline; public static final String JSON_PROPERTY_VIDEO25_PERCENT_BEACON_URLS = "video25PercentBeaconUrls"; private List video25PercentBeaconUrls = null; public static final String JSON_PROPERTY_VIDEO50_PERCENT_BEACON_URLS = "video50PercentBeaconUrls"; private List video50PercentBeaconUrls = null; public static final String JSON_PROPERTY_VIDEO75_PERCENT_BEACON_URLS = "video75PercentBeaconUrls"; private List video75PercentBeaconUrls = null; public static final String JSON_PROPERTY_VIDEO_COMPLETE_BEACON_URLS = "videoCompleteBeaconUrls"; private List videoCompleteBeaconUrls = null; public static final String JSON_PROPERTY_VIDEO_START_BEACON_URLS = "videoStartBeaconUrls"; private List videoStartBeaconUrls = null; public static final String JSON_PROPERTY_ACTION_AFTER_AD_CLICKS = "actionAfterAdClicks"; private Boolean actionAfterAdClicks; public GuaranteedAdGroupAdServiceInstreamAd() { } public GuaranteedAdGroupAdServiceInstreamAd displayUrl(String displayUrl) { this.displayUrl = displayUrl; return this; } /** * <div lang=\"ja\"> 表示URLです。<br> このフィールドは、レスポンスの際に返却されますが、リクエストの際には無視されます。 </div> <div lang=\"en\"> Display URL.<br> This field will be returned in the response, it will be ignored on input. </div> * @return displayUrl **/ @javax.annotation.Nullable @ApiModelProperty(value = "
表示URLです。
このフィールドは、レスポンスの際に返却されますが、リクエストの際には無視されます。
Display URL.
This field will be returned in the response, it will be ignored on input.
") @JsonProperty(JSON_PROPERTY_DISPLAY_URL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public String getDisplayUrl() { return displayUrl; } @JsonProperty(JSON_PROPERTY_DISPLAY_URL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public void setDisplayUrl(String displayUrl) { this.displayUrl = displayUrl; } public GuaranteedAdGroupAdServiceInstreamAd customParameters(GuaranteedAdGroupAdServiceCustomParameters customParameters) { this.customParameters = customParameters; return this; } /** * Get customParameters * @return customParameters **/ @javax.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_CUSTOM_PARAMETERS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public GuaranteedAdGroupAdServiceCustomParameters getCustomParameters() { return customParameters; } @JsonProperty(JSON_PROPERTY_CUSTOM_PARAMETERS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public void setCustomParameters(GuaranteedAdGroupAdServiceCustomParameters customParameters) { this.customParameters = customParameters; } public GuaranteedAdGroupAdServiceInstreamAd displayUrlLevel(GuaranteedAdGroupAdServiceDisplayUrlLevel displayUrlLevel) { this.displayUrlLevel = displayUrlLevel; return this; } /** * Get displayUrlLevel * @return displayUrlLevel **/ @javax.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_DISPLAY_URL_LEVEL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public GuaranteedAdGroupAdServiceDisplayUrlLevel getDisplayUrlLevel() { return displayUrlLevel; } @JsonProperty(JSON_PROPERTY_DISPLAY_URL_LEVEL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public void setDisplayUrlLevel(GuaranteedAdGroupAdServiceDisplayUrlLevel displayUrlLevel) { this.displayUrlLevel = displayUrlLevel; } public GuaranteedAdGroupAdServiceInstreamAd finalUrl(String finalUrl) { this.finalUrl = finalUrl; return this; } /** * <div lang=\"ja\">最終リンク先URLです。<br> finalUrlフィールドを設定する場合、trackingUrl、customParametersは任意になります。<br> このフィールドは、レスポンスの際に返却されますが、リクエストの際には無視されます。<br> ※actionAfterAdClicksがtrueの場合は必須です。 </div> <div lang=\"en\">Final URL.<br> If you specify finalUrl, trackingUrl and customParameters will be optional.<br> This field will be returned in the response, it will be ignored on input.<br> ∗If actionAfterAdClicks is true, this field is required. </div> * @return finalUrl **/ @javax.annotation.Nullable @ApiModelProperty(value = "
最終リンク先URLです。
finalUrlフィールドを設定する場合、trackingUrl、customParametersは任意になります。
このフィールドは、レスポンスの際に返却されますが、リクエストの際には無視されます。
※actionAfterAdClicksがtrueの場合は必須です。
Final URL.
If you specify finalUrl, trackingUrl and customParameters will be optional.
This field will be returned in the response, it will be ignored on input.
∗If actionAfterAdClicks is true, this field is required.
") @JsonProperty(JSON_PROPERTY_FINAL_URL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public String getFinalUrl() { return finalUrl; } @JsonProperty(JSON_PROPERTY_FINAL_URL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public void setFinalUrl(String finalUrl) { this.finalUrl = finalUrl; } public GuaranteedAdGroupAdServiceInstreamAd smartphoneFinalUrl(String smartphoneFinalUrl) { this.smartphoneFinalUrl = smartphoneFinalUrl; return this; } /** * <div lang=\"ja\">スマートフォン向けURLです。<br> finalUrlを指定するときのみ、任意で指定できます。 </div> <div lang=\"en\">Final URL (smartphone).<br> This field can be optionally specified only when specifying finalUrl. </div> * @return smartphoneFinalUrl **/ @javax.annotation.Nullable @ApiModelProperty(value = "
スマートフォン向けURLです。
finalUrlを指定するときのみ、任意で指定できます。
Final URL (smartphone).
This field can be optionally specified only when specifying finalUrl.
") @JsonProperty(JSON_PROPERTY_SMARTPHONE_FINAL_URL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public String getSmartphoneFinalUrl() { return smartphoneFinalUrl; } @JsonProperty(JSON_PROPERTY_SMARTPHONE_FINAL_URL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public void setSmartphoneFinalUrl(String smartphoneFinalUrl) { this.smartphoneFinalUrl = smartphoneFinalUrl; } public GuaranteedAdGroupAdServiceInstreamAd trackingUrl(String trackingUrl) { this.trackingUrl = trackingUrl; return this; } /** * <div lang=\"ja\">トラッキングURLです。<br> このフィールドは、レスポンスの際に返却されますが、リクエストの際には無視されます。<br> finalUrlを指定するときのみ、任意で指定できます。 </div> <div lang=\"en\">Tracking URL.<br> This field will be returned in the response, it will be ignored on input.<br> This field can be optionally specified only when specifying finalUrl. </div> * @return trackingUrl **/ @javax.annotation.Nullable @ApiModelProperty(value = "
トラッキングURLです。
このフィールドは、レスポンスの際に返却されますが、リクエストの際には無視されます。
finalUrlを指定するときのみ、任意で指定できます。
Tracking URL.
This field will be returned in the response, it will be ignored on input.
This field can be optionally specified only when specifying finalUrl.
") @JsonProperty(JSON_PROPERTY_TRACKING_URL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public String getTrackingUrl() { return trackingUrl; } @JsonProperty(JSON_PROPERTY_TRACKING_URL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public void setTrackingUrl(String trackingUrl) { this.trackingUrl = trackingUrl; } public GuaranteedAdGroupAdServiceInstreamAd headline(String headline) { this.headline = headline; return this; } /** * <div lang=\"ja\"> ヘッドラインです。<br> このフィールドは、レスポンスの際に返却されますが、リクエストの際には無視されます。 </div> <div lang=\"en\"> Headline.<br> This field will be returned in the response, it will be ignored on input. </div> * @return headline **/ @javax.annotation.Nullable @ApiModelProperty(value = "
ヘッドラインです。
このフィールドは、レスポンスの際に返却されますが、リクエストの際には無視されます。
Headline.
This field will be returned in the response, it will be ignored on input.
") @JsonProperty(JSON_PROPERTY_HEADLINE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public String getHeadline() { return headline; } @JsonProperty(JSON_PROPERTY_HEADLINE) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public void setHeadline(String headline) { this.headline = headline; } public GuaranteedAdGroupAdServiceInstreamAd video25PercentBeaconUrls(List video25PercentBeaconUrls) { this.video25PercentBeaconUrls = video25PercentBeaconUrls; return this; } public GuaranteedAdGroupAdServiceInstreamAd addVideo25PercentBeaconUrlsItem(String video25PercentBeaconUrlsItem) { if (this.video25PercentBeaconUrls == null) { this.video25PercentBeaconUrls = new ArrayList<>(); } this.video25PercentBeaconUrls.add(video25PercentBeaconUrlsItem); return this; } /** * <div lang=\"ja\"> 25%再生視聴ビーコンURLです。<br> このフィールドは、レスポンスの際に返却されますが、リクエストの際には無視されます。<br> ※httpsのURLのみ設定可能です。 </div> <div lang=\"en\"> Playback viewing beacon URL (25%).<br> This field will be returned in the response, it will be ignored on input.<br> ∗Available URL is only &#34;https&#34;. </div> * @return video25PercentBeaconUrls **/ @javax.annotation.Nullable @ApiModelProperty(value = "
25%再生視聴ビーコンURLです。
このフィールドは、レスポンスの際に返却されますが、リクエストの際には無視されます。
※httpsのURLのみ設定可能です。
Playback viewing beacon URL (25%).
This field will be returned in the response, it will be ignored on input.
∗Available URL is only "https".
") @JsonProperty(JSON_PROPERTY_VIDEO25_PERCENT_BEACON_URLS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public List getVideo25PercentBeaconUrls() { return video25PercentBeaconUrls; } @JsonProperty(JSON_PROPERTY_VIDEO25_PERCENT_BEACON_URLS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public void setVideo25PercentBeaconUrls(List video25PercentBeaconUrls) { this.video25PercentBeaconUrls = video25PercentBeaconUrls; } public GuaranteedAdGroupAdServiceInstreamAd video50PercentBeaconUrls(List video50PercentBeaconUrls) { this.video50PercentBeaconUrls = video50PercentBeaconUrls; return this; } public GuaranteedAdGroupAdServiceInstreamAd addVideo50PercentBeaconUrlsItem(String video50PercentBeaconUrlsItem) { if (this.video50PercentBeaconUrls == null) { this.video50PercentBeaconUrls = new ArrayList<>(); } this.video50PercentBeaconUrls.add(video50PercentBeaconUrlsItem); return this; } /** * <div lang=\"ja\"> 50%再生視聴ビーコンURLです。<br> このフィールドは、レスポンスの際に返却されますが、リクエストの際には無視されます。<br> ※httpsのURLのみ設定可能です。 </div> <div lang=\"en\"> Playback viewing beacon URL (50%).<br> This field will be returned in the response, it will be ignored on input.<br> ∗Available URL is only &#34;https&#34;. </div> * @return video50PercentBeaconUrls **/ @javax.annotation.Nullable @ApiModelProperty(value = "
50%再生視聴ビーコンURLです。
このフィールドは、レスポンスの際に返却されますが、リクエストの際には無視されます。
※httpsのURLのみ設定可能です。
Playback viewing beacon URL (50%).
This field will be returned in the response, it will be ignored on input.
∗Available URL is only "https".
") @JsonProperty(JSON_PROPERTY_VIDEO50_PERCENT_BEACON_URLS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public List getVideo50PercentBeaconUrls() { return video50PercentBeaconUrls; } @JsonProperty(JSON_PROPERTY_VIDEO50_PERCENT_BEACON_URLS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public void setVideo50PercentBeaconUrls(List video50PercentBeaconUrls) { this.video50PercentBeaconUrls = video50PercentBeaconUrls; } public GuaranteedAdGroupAdServiceInstreamAd video75PercentBeaconUrls(List video75PercentBeaconUrls) { this.video75PercentBeaconUrls = video75PercentBeaconUrls; return this; } public GuaranteedAdGroupAdServiceInstreamAd addVideo75PercentBeaconUrlsItem(String video75PercentBeaconUrlsItem) { if (this.video75PercentBeaconUrls == null) { this.video75PercentBeaconUrls = new ArrayList<>(); } this.video75PercentBeaconUrls.add(video75PercentBeaconUrlsItem); return this; } /** * <div lang=\"ja\"> 75%再生視聴ビーコンURLです。<br> このフィールドは、レスポンスの際に返却されますが、リクエストの際には無視されます。<br> ※httpsのURLのみ設定可能です。 </div> <div lang=\"en\"> Playback viewing beacon URL (75%).<br> This field will be returned in the response, it will be ignored on input.<br> ∗Available URL is only &#34;https&#34;. </div> * @return video75PercentBeaconUrls **/ @javax.annotation.Nullable @ApiModelProperty(value = "
75%再生視聴ビーコンURLです。
このフィールドは、レスポンスの際に返却されますが、リクエストの際には無視されます。
※httpsのURLのみ設定可能です。
Playback viewing beacon URL (75%).
This field will be returned in the response, it will be ignored on input.
∗Available URL is only "https".
") @JsonProperty(JSON_PROPERTY_VIDEO75_PERCENT_BEACON_URLS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public List getVideo75PercentBeaconUrls() { return video75PercentBeaconUrls; } @JsonProperty(JSON_PROPERTY_VIDEO75_PERCENT_BEACON_URLS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public void setVideo75PercentBeaconUrls(List video75PercentBeaconUrls) { this.video75PercentBeaconUrls = video75PercentBeaconUrls; } public GuaranteedAdGroupAdServiceInstreamAd videoCompleteBeaconUrls(List videoCompleteBeaconUrls) { this.videoCompleteBeaconUrls = videoCompleteBeaconUrls; return this; } public GuaranteedAdGroupAdServiceInstreamAd addVideoCompleteBeaconUrlsItem(String videoCompleteBeaconUrlsItem) { if (this.videoCompleteBeaconUrls == null) { this.videoCompleteBeaconUrls = new ArrayList<>(); } this.videoCompleteBeaconUrls.add(videoCompleteBeaconUrlsItem); return this; } /** * <div lang=\"ja\"> 再生完了ビーコンURLです。<br> このフィールドは、レスポンスの際に返却されますが、リクエストの際には無視されます。<br> ※httpsのURLのみ設定可能です。 </div> <div lang=\"en\"> Viewing beacon URL (complete).<br> This field will be returned in the response, it will be ignored on input.<br> ∗Available URL is only &#34;https&#34;. </div> * @return videoCompleteBeaconUrls **/ @javax.annotation.Nullable @ApiModelProperty(value = "
再生完了ビーコンURLです。
このフィールドは、レスポンスの際に返却されますが、リクエストの際には無視されます。
※httpsのURLのみ設定可能です。
Viewing beacon URL (complete).
This field will be returned in the response, it will be ignored on input.
∗Available URL is only "https".
") @JsonProperty(JSON_PROPERTY_VIDEO_COMPLETE_BEACON_URLS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public List getVideoCompleteBeaconUrls() { return videoCompleteBeaconUrls; } @JsonProperty(JSON_PROPERTY_VIDEO_COMPLETE_BEACON_URLS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public void setVideoCompleteBeaconUrls(List videoCompleteBeaconUrls) { this.videoCompleteBeaconUrls = videoCompleteBeaconUrls; } public GuaranteedAdGroupAdServiceInstreamAd videoStartBeaconUrls(List videoStartBeaconUrls) { this.videoStartBeaconUrls = videoStartBeaconUrls; return this; } public GuaranteedAdGroupAdServiceInstreamAd addVideoStartBeaconUrlsItem(String videoStartBeaconUrlsItem) { if (this.videoStartBeaconUrls == null) { this.videoStartBeaconUrls = new ArrayList<>(); } this.videoStartBeaconUrls.add(videoStartBeaconUrlsItem); return this; } /** * <div lang=\"ja\"> 再生開始ビーコンURLです。<br> このフィールドは、レスポンスの際に返却されますが、リクエストの際には無視されます。<br> ※httpsのURLのみ設定可能です。 </div> <div lang=\"en\"> Viewing beacon URL (start).<br> This field will be returned in the response, it will be ignored on input.<br> ∗Available URL is only &#34;https&#34;. </div> * @return videoStartBeaconUrls **/ @javax.annotation.Nullable @ApiModelProperty(value = "
再生開始ビーコンURLです。
このフィールドは、レスポンスの際に返却されますが、リクエストの際には無視されます。
※httpsのURLのみ設定可能です。
Viewing beacon URL (start).
This field will be returned in the response, it will be ignored on input.
∗Available URL is only "https".
") @JsonProperty(JSON_PROPERTY_VIDEO_START_BEACON_URLS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public List getVideoStartBeaconUrls() { return videoStartBeaconUrls; } @JsonProperty(JSON_PROPERTY_VIDEO_START_BEACON_URLS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public void setVideoStartBeaconUrls(List videoStartBeaconUrls) { this.videoStartBeaconUrls = videoStartBeaconUrls; } public GuaranteedAdGroupAdServiceInstreamAd actionAfterAdClicks(Boolean actionAfterAdClicks) { this.actionAfterAdClicks = actionAfterAdClicks; return this; } /** * <div lang=\"ja\"> 広告クリック時の動作です。trueの場合は、最終リンク先URLへ遷移します。<br> このフィールドは、レスポンスの際に返却されますが、リクエストの際には無視されます。 </div> <div lang=\"en\"> Behavior when clicked on the ad. If true, it will transition to the final URL.<br> This field will be returned in the response, it will be ignored on input. </div> * @return actionAfterAdClicks **/ @javax.annotation.Nullable @ApiModelProperty(value = "
広告クリック時の動作です。trueの場合は、最終リンク先URLへ遷移します。
このフィールドは、レスポンスの際に返却されますが、リクエストの際には無視されます。
Behavior when clicked on the ad. If true, it will transition to the final URL.
This field will be returned in the response, it will be ignored on input.
") @JsonProperty(JSON_PROPERTY_ACTION_AFTER_AD_CLICKS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public Boolean getActionAfterAdClicks() { return actionAfterAdClicks; } @JsonProperty(JSON_PROPERTY_ACTION_AFTER_AD_CLICKS) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public void setActionAfterAdClicks(Boolean actionAfterAdClicks) { this.actionAfterAdClicks = actionAfterAdClicks; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } GuaranteedAdGroupAdServiceInstreamAd guaranteedAdGroupAdServiceInstreamAd = (GuaranteedAdGroupAdServiceInstreamAd) o; return Objects.equals(this.displayUrl, guaranteedAdGroupAdServiceInstreamAd.displayUrl) && Objects.equals(this.customParameters, guaranteedAdGroupAdServiceInstreamAd.customParameters) && Objects.equals(this.displayUrlLevel, guaranteedAdGroupAdServiceInstreamAd.displayUrlLevel) && Objects.equals(this.finalUrl, guaranteedAdGroupAdServiceInstreamAd.finalUrl) && Objects.equals(this.smartphoneFinalUrl, guaranteedAdGroupAdServiceInstreamAd.smartphoneFinalUrl) && Objects.equals(this.trackingUrl, guaranteedAdGroupAdServiceInstreamAd.trackingUrl) && Objects.equals(this.headline, guaranteedAdGroupAdServiceInstreamAd.headline) && Objects.equals(this.video25PercentBeaconUrls, guaranteedAdGroupAdServiceInstreamAd.video25PercentBeaconUrls) && Objects.equals(this.video50PercentBeaconUrls, guaranteedAdGroupAdServiceInstreamAd.video50PercentBeaconUrls) && Objects.equals(this.video75PercentBeaconUrls, guaranteedAdGroupAdServiceInstreamAd.video75PercentBeaconUrls) && Objects.equals(this.videoCompleteBeaconUrls, guaranteedAdGroupAdServiceInstreamAd.videoCompleteBeaconUrls) && Objects.equals(this.videoStartBeaconUrls, guaranteedAdGroupAdServiceInstreamAd.videoStartBeaconUrls) && Objects.equals(this.actionAfterAdClicks, guaranteedAdGroupAdServiceInstreamAd.actionAfterAdClicks); } @Override public int hashCode() { return Objects.hash(displayUrl, customParameters, displayUrlLevel, finalUrl, smartphoneFinalUrl, trackingUrl, headline, video25PercentBeaconUrls, video50PercentBeaconUrls, video75PercentBeaconUrls, videoCompleteBeaconUrls, videoStartBeaconUrls, actionAfterAdClicks); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class GuaranteedAdGroupAdServiceInstreamAd {\n"); sb.append(" displayUrl: ").append(toIndentedString(displayUrl)).append("\n"); sb.append(" customParameters: ").append(toIndentedString(customParameters)).append("\n"); sb.append(" displayUrlLevel: ").append(toIndentedString(displayUrlLevel)).append("\n"); sb.append(" finalUrl: ").append(toIndentedString(finalUrl)).append("\n"); sb.append(" smartphoneFinalUrl: ").append(toIndentedString(smartphoneFinalUrl)).append("\n"); sb.append(" trackingUrl: ").append(toIndentedString(trackingUrl)).append("\n"); sb.append(" headline: ").append(toIndentedString(headline)).append("\n"); sb.append(" video25PercentBeaconUrls: ").append(toIndentedString(video25PercentBeaconUrls)).append("\n"); sb.append(" video50PercentBeaconUrls: ").append(toIndentedString(video50PercentBeaconUrls)).append("\n"); sb.append(" video75PercentBeaconUrls: ").append(toIndentedString(video75PercentBeaconUrls)).append("\n"); sb.append(" videoCompleteBeaconUrls: ").append(toIndentedString(videoCompleteBeaconUrls)).append("\n"); sb.append(" videoStartBeaconUrls: ").append(toIndentedString(videoStartBeaconUrls)).append("\n"); sb.append(" actionAfterAdClicks: ").append(toIndentedString(actionAfterAdClicks)).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