io.swagger.client.model.CreateFeedDocumentSpecification Maven / Gradle / Ivy
/*
* Selling Partner API for Feeds
* The Selling Partner API for Feeds lets you upload data to Amazon on behalf of a selling partner.
*
* OpenAPI spec version: 2021-06-30
*
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* Do not edit the class manually.
*/
package io.swagger.client.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
/**
* Specifies the content type for the createFeedDocument operation.
*/
@ApiModel(description = "Specifies the content type for the createFeedDocument operation.")
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2022-06-02T21:25:14.951+05:30")
public class CreateFeedDocumentSpecification {
@SerializedName("contentType")
private String contentType = null;
public CreateFeedDocumentSpecification contentType(String contentType) {
this.contentType = contentType;
return this;
}
/**
* The content type of the feed.
* @return contentType
**/
@ApiModelProperty(required = true, value = "The content type of the feed.")
public String getContentType() {
return contentType;
}
public void setContentType(String contentType) {
this.contentType = contentType;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
CreateFeedDocumentSpecification createFeedDocumentSpecification = (CreateFeedDocumentSpecification) o;
return Objects.equals(this.contentType, createFeedDocumentSpecification.contentType);
}
@Override
public int hashCode() {
return Objects.hash(contentType);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class CreateFeedDocumentSpecification {\n");
sb.append(" contentType: ").append(toIndentedString(contentType)).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(java.lang.Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy