package com.muse.dto; 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.util.UUID; import org.springframework.lang.Nullable; import java.io.Serializable; import java.time.OffsetDateTime; import jakarta.validation.Valid; import jakarta.validation.constraints.*; import io.swagger.v3.oas.annotations.media.Schema; import java.util.*; import jakarta.annotation.Generated; /** * PrecheckAgentSlotRequest */ @JsonTypeName("precheckAgentSlot_request") @Generated(value = "org.openapitools.codegen.languages.SpringCodegen", date = "2026-05-24T15:05:54.603829+08:00[Asia/Shanghai]", comments = "Generator version: 7.22.0") public class PrecheckAgentSlotRequest implements Serializable { private static final long serialVersionUID = 1L; private String commandId; private UUID sourceAgentId; private Integer sourceAgentVersion; private @Nullable String authorizationSnapshotId; private @Nullable Integer expectedSlotRevision; public PrecheckAgentSlotRequest() { super(); } /** * Constructor with only required parameters */ public PrecheckAgentSlotRequest(String commandId, UUID sourceAgentId, Integer sourceAgentVersion) { this.commandId = commandId; this.sourceAgentId = sourceAgentId; this.sourceAgentVersion = sourceAgentVersion; } public PrecheckAgentSlotRequest commandId(String commandId) { this.commandId = commandId; return this; } /** * 幂等键 * @return commandId */ @NotNull @Schema(name = "commandId", description = "幂等键", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("commandId") public String getCommandId() { return commandId; } @JsonProperty("commandId") public void setCommandId(String commandId) { this.commandId = commandId; } public PrecheckAgentSlotRequest sourceAgentId(UUID sourceAgentId) { this.sourceAgentId = sourceAgentId; return this; } /** * 来源智能体 ID * @return sourceAgentId */ @NotNull @Valid @Schema(name = "sourceAgentId", description = "来源智能体 ID", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("sourceAgentId") public UUID getSourceAgentId() { return sourceAgentId; } @JsonProperty("sourceAgentId") public void setSourceAgentId(UUID sourceAgentId) { this.sourceAgentId = sourceAgentId; } public PrecheckAgentSlotRequest sourceAgentVersion(Integer sourceAgentVersion) { this.sourceAgentVersion = sourceAgentVersion; return this; } /** * 来源智能体版本 * @return sourceAgentVersion */ @NotNull @Schema(name = "sourceAgentVersion", description = "来源智能体版本", requiredMode = Schema.RequiredMode.REQUIRED) @JsonProperty("sourceAgentVersion") public Integer getSourceAgentVersion() { return sourceAgentVersion; } @JsonProperty("sourceAgentVersion") public void setSourceAgentVersion(Integer sourceAgentVersion) { this.sourceAgentVersion = sourceAgentVersion; } public PrecheckAgentSlotRequest authorizationSnapshotId(@Nullable String authorizationSnapshotId) { this.authorizationSnapshotId = authorizationSnapshotId; return this; } /** * 授权快照 ID * @return authorizationSnapshotId */ @Schema(name = "authorizationSnapshotId", description = "授权快照 ID", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("authorizationSnapshotId") public @Nullable String getAuthorizationSnapshotId() { return authorizationSnapshotId; } @JsonProperty("authorizationSnapshotId") public void setAuthorizationSnapshotId(@Nullable String authorizationSnapshotId) { this.authorizationSnapshotId = authorizationSnapshotId; } public PrecheckAgentSlotRequest expectedSlotRevision(@Nullable Integer expectedSlotRevision) { this.expectedSlotRevision = expectedSlotRevision; return this; } /** * 目标槽位当前 revision * @return expectedSlotRevision */ @Schema(name = "expectedSlotRevision", description = "目标槽位当前 revision", requiredMode = Schema.RequiredMode.NOT_REQUIRED) @JsonProperty("expectedSlotRevision") public @Nullable Integer getExpectedSlotRevision() { return expectedSlotRevision; } @JsonProperty("expectedSlotRevision") public void setExpectedSlotRevision(@Nullable Integer expectedSlotRevision) { this.expectedSlotRevision = expectedSlotRevision; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } PrecheckAgentSlotRequest precheckAgentSlotRequest = (PrecheckAgentSlotRequest) o; return Objects.equals(this.commandId, precheckAgentSlotRequest.commandId) && Objects.equals(this.sourceAgentId, precheckAgentSlotRequest.sourceAgentId) && Objects.equals(this.sourceAgentVersion, precheckAgentSlotRequest.sourceAgentVersion) && Objects.equals(this.authorizationSnapshotId, precheckAgentSlotRequest.authorizationSnapshotId) && Objects.equals(this.expectedSlotRevision, precheckAgentSlotRequest.expectedSlotRevision); } @Override public int hashCode() { return Objects.hash(commandId, sourceAgentId, sourceAgentVersion, authorizationSnapshotId, expectedSlotRevision); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class PrecheckAgentSlotRequest {\n"); sb.append(" commandId: ").append(toIndentedString(commandId)).append("\n"); sb.append(" sourceAgentId: ").append(toIndentedString(sourceAgentId)).append("\n"); sb.append(" sourceAgentVersion: ").append(toIndentedString(sourceAgentVersion)).append("\n"); sb.append(" authorizationSnapshotId: ").append(toIndentedString(authorizationSnapshotId)).append("\n"); sb.append(" expectedSlotRevision: ").append(toIndentedString(expectedSlotRevision)).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(@Nullable Object o) { return o == null ? "null" : o.toString().replace("\n", "\n "); } }