net.rrworld.henrikval.gen.model.V1LifetimeMatchesItemMetaSeason Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of henrikapi-val-client Show documentation
Show all versions of henrikapi-val-client Show documentation
Valorant Java client based on HenrikDev-API
The newest version!
package net.rrworld.henrikval.gen.model;
import java.net.URI;
import java.util.Objects;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import java.time.OffsetDateTime;
import javax.validation.Valid;
import javax.validation.constraints.*;
import io.swagger.v3.oas.annotations.media.Schema;
import java.util.*;
import javax.annotation.Generated;
/**
* V1LifetimeMatchesItemMetaSeason
*/
@JsonTypeName("v1_lifetime_matches_item_meta_season")
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen", date = "2024-09-26T19:32:28.190871Z[Etc/UTC]", comments = "Generator version: 7.8.0")
public class V1LifetimeMatchesItemMetaSeason {
private String id;
private String _short = null;
public V1LifetimeMatchesItemMetaSeason id(String id) {
this.id = id;
return this;
}
/**
* Get id
* @return id
*/
@Schema(name = "id", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
@JsonProperty("id")
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public V1LifetimeMatchesItemMetaSeason _short(String _short) {
this._short = _short;
return this;
}
/**
* Get _short
* @return _short
*/
@Schema(name = "short", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
@JsonProperty("short")
public String getShort() {
return _short;
}
public void setShort(String _short) {
this._short = _short;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
V1LifetimeMatchesItemMetaSeason v1LifetimeMatchesItemMetaSeason = (V1LifetimeMatchesItemMetaSeason) o;
return Objects.equals(this.id, v1LifetimeMatchesItemMetaSeason.id) &&
Objects.equals(this._short, v1LifetimeMatchesItemMetaSeason._short);
}
@Override
public int hashCode() {
return Objects.hash(id, _short);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class V1LifetimeMatchesItemMetaSeason {\n");
sb.append(" id: ").append(toIndentedString(id)).append("\n");
sb.append(" _short: ").append(toIndentedString(_short)).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 ");
}
}