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

io.swagger.client.model.GetReportsResponse Maven / Gradle / Ivy

/*
 * Selling Partner API for Reports
 * The Selling Partner API for Reports lets you retrieve and manage a variety of reports that can help selling partners manage their businesses.
 *
 * 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 io.swagger.client.model.ReportList;
import java.io.IOException;

/**
 * The response for the getReports operation.
 */
@ApiModel(description = "The response for the getReports operation.")
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2022-08-09T14:32:03.623+05:30")
public class GetReportsResponse {
  @SerializedName("reports")
  private ReportList reports = null;

  @SerializedName("nextToken")
  private String nextToken = null;

  public GetReportsResponse reports(ReportList reports) {
    this.reports = reports;
    return this;
  }

   /**
   * The reports.
   * @return reports
  **/
  @ApiModelProperty(required = true, value = "The reports.")
  public ReportList getReports() {
    return reports;
  }

  public void setReports(ReportList reports) {
    this.reports = reports;
  }

  public GetReportsResponse nextToken(String nextToken) {
    this.nextToken = nextToken;
    return this;
  }

   /**
   * Returned when the number of results exceeds pageSize. To get the next page of results, call getReports with this token as the only parameter.
   * @return nextToken
  **/
  @ApiModelProperty(value = "Returned when the number of results exceeds pageSize. To get the next page of results, call getReports with this token as the only parameter.")
  public String getNextToken() {
    return nextToken;
  }

  public void setNextToken(String nextToken) {
    this.nextToken = nextToken;
  }


  @Override
  public boolean equals(java.lang.Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    GetReportsResponse getReportsResponse = (GetReportsResponse) o;
    return Objects.equals(this.reports, getReportsResponse.reports) &&
        Objects.equals(this.nextToken, getReportsResponse.nextToken);
  }

  @Override
  public int hashCode() {
    return Objects.hash(reports, nextToken);
  }


  @Override
  public String toString() {
    StringBuilder sb = new StringBuilder();
    sb.append("class GetReportsResponse {\n");
    
    sb.append("    reports: ").append(toIndentedString(reports)).append("\n");
    sb.append("    nextToken: ").append(toIndentedString(nextToken)).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