dev.crashteam.openapi.uzumanalytics.model.GetReportBySeller200Response Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openapi-uzum-analytics Show documentation
Show all versions of openapi-uzum-analytics Show documentation
Generates jar artifact containing compiled openapi classes based on generated openapi yaml files
/*
* CrashTeam Uzum Analytics API
* CrashTeam Dev Uzum Analytics API
*
* The version of the OpenAPI document: 0.0.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package dev.crashteam.openapi.uzumanalytics.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 java.util.UUID;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import com.fasterxml.jackson.annotation.JsonTypeName;
/**
* GetReportBySeller200Response
*/
@JsonPropertyOrder({
GetReportBySeller200Response.JSON_PROPERTY_JOB_ID,
GetReportBySeller200Response.JSON_PROPERTY_REPORT_ID
})
@JsonTypeName("getReportBySeller_200_response")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-02-21T16:53:18.489277710Z[Etc/UTC]")
public class GetReportBySeller200Response {
public static final String JSON_PROPERTY_JOB_ID = "jobId";
private UUID jobId;
public static final String JSON_PROPERTY_REPORT_ID = "reportId";
private String reportId;
public GetReportBySeller200Response() {
}
public GetReportBySeller200Response jobId(UUID jobId) {
this.jobId = jobId;
return this;
}
/**
* Идентификатор асинхронной job
* @return jobId
**/
@javax.annotation.Nullable
@JsonProperty(JSON_PROPERTY_JOB_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public UUID getJobId() {
return jobId;
}
@JsonProperty(JSON_PROPERTY_JOB_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setJobId(UUID jobId) {
this.jobId = jobId;
}
public GetReportBySeller200Response reportId(String reportId) {
this.reportId = reportId;
return this;
}
/**
* Идентификатор отчета
* @return reportId
**/
@javax.annotation.Nullable
@JsonProperty(JSON_PROPERTY_REPORT_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getReportId() {
return reportId;
}
@JsonProperty(JSON_PROPERTY_REPORT_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setReportId(String reportId) {
this.reportId = reportId;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
GetReportBySeller200Response getReportBySeller200Response = (GetReportBySeller200Response) o;
return Objects.equals(this.jobId, getReportBySeller200Response.jobId) &&
Objects.equals(this.reportId, getReportBySeller200Response.reportId);
}
@Override
public int hashCode() {
return Objects.hash(jobId, reportId);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class GetReportBySeller200Response {\n");
sb.append(" jobId: ").append(toIndentedString(jobId)).append("\n");
sb.append(" reportId: ").append(toIndentedString(reportId)).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