Update api to 1.4.3

This commit is contained in:
Guilherme Werner 2026-06-15 20:21:51 -03:00
parent 05878c3e24
commit 3bf0de491f
69 changed files with 1557 additions and 1075 deletions

View file

@ -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).
@ -23,7 +23,6 @@ import com.tribufu.generated.models.GroupRank;
import java.io.IOException;
import java.time.OffsetDateTime;
import java.util.Arrays;
import java.util.UUID;
import org.openapitools.jackson.nullable.JsonNullable;
import com.google.gson.Gson;
@ -52,7 +51,7 @@ import com.tribufu.generated.JSON;
/**
* ProfileGroup
*/
@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 ProfileGroup {
public static final String SERIALIZED_NAME_ID = "id";
@SerializedName(SERIALIZED_NAME_ID)
@ -62,7 +61,7 @@ public class ProfileGroup {
public static final String SERIALIZED_NAME_UUID = "uuid";
@SerializedName(SERIALIZED_NAME_UUID)
@javax.annotation.Nullable
private UUID uuid;
private String uuid;
public static final String SERIALIZED_NAME_NAME = "name";
@SerializedName(SERIALIZED_NAME_NAME)
@ -126,7 +125,7 @@ public class ProfileGroup {
}
public ProfileGroup uuid(@javax.annotation.Nullable UUID uuid) {
public ProfileGroup uuid(@javax.annotation.Nullable String uuid) {
this.uuid = uuid;
return this;
}
@ -136,11 +135,11 @@ public class ProfileGroup {
* @return uuid
*/
@javax.annotation.Nullable
public UUID getUuid() {
public String getUuid() {
return uuid;
}
public void setUuid(@javax.annotation.Nullable UUID uuid) {
public void setUuid(@javax.annotation.Nullable String uuid) {
this.uuid = uuid;
}