mirror of
https://github.com/Tribufu/TribufuJava
synced 2026-08-17 00:21:08 +00:00
Update api to 1.4.3
This commit is contained in:
parent
05878c3e24
commit
3bf0de491f
69 changed files with 1557 additions and 1075 deletions
|
|
@ -2,7 +2,7 @@
|
|||
* Tribufu API
|
||||
* API to access Tribufu services.
|
||||
*
|
||||
* The version of the OpenAPI document: 1.3.0
|
||||
* The version of the OpenAPI document: 1.4.3
|
||||
* Contact: contact@tribufu.com
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
|
|
@ -52,7 +52,7 @@ import com.tribufu.generated.JSON;
|
|||
/**
|
||||
* Game
|
||||
*/
|
||||
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-12-27T09:52:38.593392400-03:00[America/Sao_Paulo]", comments = "Generator version: 7.12.0")
|
||||
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-06-15T20:18:39.326231700-03:00[America/Sao_Paulo]", comments = "Generator version: 7.12.0")
|
||||
public class Game {
|
||||
public static final String SERIALIZED_NAME_ID = "id";
|
||||
@SerializedName(SERIALIZED_NAME_ID)
|
||||
|
|
@ -104,15 +104,20 @@ public class Game {
|
|||
@javax.annotation.Nullable
|
||||
private String slug;
|
||||
|
||||
public static final String SERIALIZED_NAME_CREATED = "created";
|
||||
@SerializedName(SERIALIZED_NAME_CREATED)
|
||||
public static final String SERIALIZED_NAME_CREATED_AT = "created_at";
|
||||
@SerializedName(SERIALIZED_NAME_CREATED_AT)
|
||||
@javax.annotation.Nullable
|
||||
private OffsetDateTime created;
|
||||
private OffsetDateTime createdAt;
|
||||
|
||||
public static final String SERIALIZED_NAME_UPDATED = "updated";
|
||||
@SerializedName(SERIALIZED_NAME_UPDATED)
|
||||
public static final String SERIALIZED_NAME_UPDATED_AT = "updated_at";
|
||||
@SerializedName(SERIALIZED_NAME_UPDATED_AT)
|
||||
@javax.annotation.Nullable
|
||||
private OffsetDateTime updated;
|
||||
private OffsetDateTime updatedAt;
|
||||
|
||||
public static final String SERIALIZED_NAME_DELETED_AT = "deleted_at";
|
||||
@SerializedName(SERIALIZED_NAME_DELETED_AT)
|
||||
@javax.annotation.Nullable
|
||||
private OffsetDateTime deletedAt;
|
||||
|
||||
public static final String SERIALIZED_NAME_ENABLE_SERVERS = "enable_servers";
|
||||
@SerializedName(SERIALIZED_NAME_ENABLE_SERVERS)
|
||||
|
|
@ -342,41 +347,60 @@ public class Game {
|
|||
}
|
||||
|
||||
|
||||
public Game created(@javax.annotation.Nullable OffsetDateTime created) {
|
||||
this.created = created;
|
||||
public Game createdAt(@javax.annotation.Nullable OffsetDateTime createdAt) {
|
||||
this.createdAt = createdAt;
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get created
|
||||
* @return created
|
||||
* Get createdAt
|
||||
* @return createdAt
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
public OffsetDateTime getCreated() {
|
||||
return created;
|
||||
public OffsetDateTime getCreatedAt() {
|
||||
return createdAt;
|
||||
}
|
||||
|
||||
public void setCreated(@javax.annotation.Nullable OffsetDateTime created) {
|
||||
this.created = created;
|
||||
public void setCreatedAt(@javax.annotation.Nullable OffsetDateTime createdAt) {
|
||||
this.createdAt = createdAt;
|
||||
}
|
||||
|
||||
|
||||
public Game updated(@javax.annotation.Nullable OffsetDateTime updated) {
|
||||
this.updated = updated;
|
||||
public Game updatedAt(@javax.annotation.Nullable OffsetDateTime updatedAt) {
|
||||
this.updatedAt = updatedAt;
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get updated
|
||||
* @return updated
|
||||
* Get updatedAt
|
||||
* @return updatedAt
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
public OffsetDateTime getUpdated() {
|
||||
return updated;
|
||||
public OffsetDateTime getUpdatedAt() {
|
||||
return updatedAt;
|
||||
}
|
||||
|
||||
public void setUpdated(@javax.annotation.Nullable OffsetDateTime updated) {
|
||||
this.updated = updated;
|
||||
public void setUpdatedAt(@javax.annotation.Nullable OffsetDateTime updatedAt) {
|
||||
this.updatedAt = updatedAt;
|
||||
}
|
||||
|
||||
|
||||
public Game deletedAt(@javax.annotation.Nullable OffsetDateTime deletedAt) {
|
||||
this.deletedAt = deletedAt;
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get deletedAt
|
||||
* @return deletedAt
|
||||
*/
|
||||
@javax.annotation.Nullable
|
||||
public OffsetDateTime getDeletedAt() {
|
||||
return deletedAt;
|
||||
}
|
||||
|
||||
public void setDeletedAt(@javax.annotation.Nullable OffsetDateTime deletedAt) {
|
||||
this.deletedAt = deletedAt;
|
||||
}
|
||||
|
||||
|
||||
|
|
@ -533,8 +557,9 @@ public class Game {
|
|||
Objects.equals(this.capsuleImageUrl, game.capsuleImageUrl) &&
|
||||
Objects.equals(this.libraryImageUrl, game.libraryImageUrl) &&
|
||||
Objects.equals(this.slug, game.slug) &&
|
||||
Objects.equals(this.created, game.created) &&
|
||||
Objects.equals(this.updated, game.updated) &&
|
||||
Objects.equals(this.createdAt, game.createdAt) &&
|
||||
Objects.equals(this.updatedAt, game.updatedAt) &&
|
||||
Objects.equals(this.deletedAt, game.deletedAt) &&
|
||||
Objects.equals(this.enableServers, game.enableServers) &&
|
||||
Objects.equals(this.gamePort, game.gamePort) &&
|
||||
Objects.equals(this.queryPort, game.queryPort) &&
|
||||
|
|
@ -550,7 +575,7 @@ public class Game {
|
|||
|
||||
@Override
|
||||
public int hashCode() {
|
||||
return Objects.hash(id, name, description, type, organizationId, iconUrl, bannerUrl, capsuleImageUrl, libraryImageUrl, slug, created, updated, enableServers, gamePort, queryPort, rconPort, gamedigId, steamAppId, steamServerAppId);
|
||||
return Objects.hash(id, name, description, type, organizationId, iconUrl, bannerUrl, capsuleImageUrl, libraryImageUrl, slug, createdAt, updatedAt, deletedAt, enableServers, gamePort, queryPort, rconPort, gamedigId, steamAppId, steamServerAppId);
|
||||
}
|
||||
|
||||
private static <T> int hashCodeNullable(JsonNullable<T> a) {
|
||||
|
|
@ -574,8 +599,9 @@ public class Game {
|
|||
sb.append(" capsuleImageUrl: ").append(toIndentedString(capsuleImageUrl)).append("\n");
|
||||
sb.append(" libraryImageUrl: ").append(toIndentedString(libraryImageUrl)).append("\n");
|
||||
sb.append(" slug: ").append(toIndentedString(slug)).append("\n");
|
||||
sb.append(" created: ").append(toIndentedString(created)).append("\n");
|
||||
sb.append(" updated: ").append(toIndentedString(updated)).append("\n");
|
||||
sb.append(" createdAt: ").append(toIndentedString(createdAt)).append("\n");
|
||||
sb.append(" updatedAt: ").append(toIndentedString(updatedAt)).append("\n");
|
||||
sb.append(" deletedAt: ").append(toIndentedString(deletedAt)).append("\n");
|
||||
sb.append(" enableServers: ").append(toIndentedString(enableServers)).append("\n");
|
||||
sb.append(" gamePort: ").append(toIndentedString(gamePort)).append("\n");
|
||||
sb.append(" queryPort: ").append(toIndentedString(queryPort)).append("\n");
|
||||
|
|
@ -615,8 +641,9 @@ public class Game {
|
|||
openapiFields.add("capsule_image_url");
|
||||
openapiFields.add("library_image_url");
|
||||
openapiFields.add("slug");
|
||||
openapiFields.add("created");
|
||||
openapiFields.add("updated");
|
||||
openapiFields.add("created_at");
|
||||
openapiFields.add("updated_at");
|
||||
openapiFields.add("deleted_at");
|
||||
openapiFields.add("enable_servers");
|
||||
openapiFields.add("game_port");
|
||||
openapiFields.add("query_port");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue