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

jp.co.yahoo.adsdisplayapi.v13.model.AudienceListServiceAppLink 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 jp.co.yahoo.adsdisplayapi.v13.model.AudienceListServiceAppPlatform; import jp.co.yahoo.adsdisplayapi.v13.model.AudienceListServiceAppVendor; import com.fasterxml.jackson.annotation.JsonPropertyOrder; import com.fasterxml.jackson.annotation.JsonTypeName; /** * <div lang=\"ja\">AudienceListServiceAppLinkオブジェクトは、アプリリンクの詳細情報を表します。</div> <div lang=\"en\">AudienceListServiceAppLink object describes the detailed information of app link.</div> */ @ApiModel(description = "
AudienceListServiceAppLinkオブジェクトは、アプリリンクの詳細情報を表します。
AudienceListServiceAppLink object describes the detailed information of app link.
") @JsonPropertyOrder({ AudienceListServiceAppLink.JSON_PROPERTY_APP_ID, AudienceListServiceAppLink.JSON_PROPERTY_APP_VENDOR, AudienceListServiceAppLink.JSON_PROPERTY_LINK_ID, AudienceListServiceAppLink.JSON_PROPERTY_APP_PLATFORM }) @JsonTypeName("AudienceListServiceAppLink") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class AudienceListServiceAppLink { public static final String JSON_PROPERTY_APP_ID = "appId"; private String appId; public static final String JSON_PROPERTY_APP_VENDOR = "appVendor"; private AudienceListServiceAppVendor appVendor; public static final String JSON_PROPERTY_LINK_ID = "linkId"; private String linkId; public static final String JSON_PROPERTY_APP_PLATFORM = "appPlatform"; private AudienceListServiceAppPlatform appPlatform; public AudienceListServiceAppLink() { } public AudienceListServiceAppLink appId(String appId) { this.appId = appId; return this; } /** * <div lang=\"ja\"> アプリIDです。<br> このフィールドは、レスポンスの際に返却されますが、リクエストの際には無視されます。 </div> <div lang=\"en\"> App ID.<br> Although this field will be returned in the response, it will be ignored on input. </div> * @return appId **/ @javax.annotation.Nullable @ApiModelProperty(value = "
アプリIDです。
このフィールドは、レスポンスの際に返却されますが、リクエストの際には無視されます。
App ID.
Although this field will be returned in the response, it will be ignored on input.
") @JsonProperty(JSON_PROPERTY_APP_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public String getAppId() { return appId; } @JsonProperty(JSON_PROPERTY_APP_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public void setAppId(String appId) { this.appId = appId; } public AudienceListServiceAppLink appVendor(AudienceListServiceAppVendor appVendor) { this.appVendor = appVendor; return this; } /** * Get appVendor * @return appVendor **/ @javax.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_APP_VENDOR) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public AudienceListServiceAppVendor getAppVendor() { return appVendor; } @JsonProperty(JSON_PROPERTY_APP_VENDOR) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public void setAppVendor(AudienceListServiceAppVendor appVendor) { this.appVendor = appVendor; } public AudienceListServiceAppLink linkId(String linkId) { this.linkId = linkId; return this; } /** * <div lang=\"ja\"> リンクIDです。<br> このフィールドは、ADD時は必須となり、SET時は無視されます。 </div> <div lang=\"en\"> Link ID.<br> This field is required in ADD operation, and will be ignored in SET operation. </div> * @return linkId **/ @javax.annotation.Nullable @ApiModelProperty(value = "
リンクIDです。
このフィールドは、ADD時は必須となり、SET時は無視されます。
Link ID.
This field is required in ADD operation, and will be ignored in SET operation.
") @JsonProperty(JSON_PROPERTY_LINK_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public String getLinkId() { return linkId; } @JsonProperty(JSON_PROPERTY_LINK_ID) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public void setLinkId(String linkId) { this.linkId = linkId; } public AudienceListServiceAppLink appPlatform(AudienceListServiceAppPlatform appPlatform) { this.appPlatform = appPlatform; return this; } /** * Get appPlatform * @return appPlatform **/ @javax.annotation.Nullable @ApiModelProperty(value = "") @JsonProperty(JSON_PROPERTY_APP_PLATFORM) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public AudienceListServiceAppPlatform getAppPlatform() { return appPlatform; } @JsonProperty(JSON_PROPERTY_APP_PLATFORM) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) public void setAppPlatform(AudienceListServiceAppPlatform appPlatform) { this.appPlatform = appPlatform; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } AudienceListServiceAppLink audienceListServiceAppLink = (AudienceListServiceAppLink) o; return Objects.equals(this.appId, audienceListServiceAppLink.appId) && Objects.equals(this.appVendor, audienceListServiceAppLink.appVendor) && Objects.equals(this.linkId, audienceListServiceAppLink.linkId) && Objects.equals(this.appPlatform, audienceListServiceAppLink.appPlatform); } @Override public int hashCode() { return Objects.hash(appId, appVendor, linkId, appPlatform); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class AudienceListServiceAppLink {\n"); sb.append(" appId: ").append(toIndentedString(appId)).append("\n"); sb.append(" appVendor: ").append(toIndentedString(appVendor)).append("\n"); sb.append(" linkId: ").append(toIndentedString(linkId)).append("\n"); sb.append(" appPlatform: ").append(toIndentedString(appPlatform)).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