com.ibm.watson.conversationalskills.model.MessageInputAttachment Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of conversationalskills-sdk Show documentation
Show all versions of conversationalskills-sdk Show documentation
SDK for creating Conversational Skills Pro-Code Provider
The newest version!
/*
Copyright 2024 IBM Corporation
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
https://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package com.ibm.watson.conversationalskills.model;
import java.util.Objects;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
/**
* A reference to a media file to be sent as an attachment with the message.
*/
@JsonPropertyOrder({
MessageInputAttachment.JSON_PROPERTY_URL,
MessageInputAttachment.JSON_PROPERTY_MEDIA_TYPE
})
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.8.0")
public class MessageInputAttachment {
public static final String JSON_PROPERTY_URL = "url";
private String url;
public static final String JSON_PROPERTY_MEDIA_TYPE = "media_type";
private String mediaType;
public MessageInputAttachment() {
}
public MessageInputAttachment url(String url) {
this.url = url;
return this;
}
/**
* The URL of the media file.
* @return url
*/
@jakarta.annotation.Nonnull
@JsonProperty(JSON_PROPERTY_URL)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public String getUrl() {
return url;
}
@JsonProperty(JSON_PROPERTY_URL)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setUrl(String url) {
this.url = url;
}
public MessageInputAttachment mediaType(String mediaType) {
this.mediaType = mediaType;
return this;
}
/**
* The media content type (such as a MIME type) of the attachment.
* @return mediaType
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_MEDIA_TYPE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getMediaType() {
return mediaType;
}
@JsonProperty(JSON_PROPERTY_MEDIA_TYPE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setMediaType(String mediaType) {
this.mediaType = mediaType;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
MessageInputAttachment messageInputAttachment = (MessageInputAttachment) o;
return Objects.equals(this.url, messageInputAttachment.url) &&
Objects.equals(this.mediaType, messageInputAttachment.mediaType);
}
@Override
public int hashCode() {
return Objects.hash(url, mediaType);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class MessageInputAttachment {\n");
sb.append(" url: ").append(toIndentedString(url)).append("\n");
sb.append(" mediaType: ").append(toIndentedString(mediaType)).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 ");
}
}