228 lines
7.3 KiB
Java
228 lines
7.3 KiB
Java
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;
|
|
|
|
/**
|
|
* BindAgentSlotRequest
|
|
*/
|
|
|
|
@JsonTypeName("bindAgentSlot_request")
|
|
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen", date = "2026-05-24T16:47:40.290595+08:00[Asia/Shanghai]", comments = "Generator version: 7.22.0")
|
|
public class BindAgentSlotRequest implements Serializable {
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
private String commandId;
|
|
|
|
private String agentSlotPrecheckId;
|
|
|
|
private UUID sourceAgentId;
|
|
|
|
private Integer sourceAgentVersion;
|
|
|
|
private @Nullable String authorizationSnapshotId;
|
|
|
|
private Integer expectedSlotRevision;
|
|
|
|
public BindAgentSlotRequest() {
|
|
super();
|
|
}
|
|
|
|
/**
|
|
* Constructor with only required parameters
|
|
*/
|
|
public BindAgentSlotRequest(String commandId, String agentSlotPrecheckId, UUID sourceAgentId, Integer sourceAgentVersion, Integer expectedSlotRevision) {
|
|
this.commandId = commandId;
|
|
this.agentSlotPrecheckId = agentSlotPrecheckId;
|
|
this.sourceAgentId = sourceAgentId;
|
|
this.sourceAgentVersion = sourceAgentVersion;
|
|
this.expectedSlotRevision = expectedSlotRevision;
|
|
}
|
|
|
|
public BindAgentSlotRequest 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 BindAgentSlotRequest agentSlotPrecheckId(String agentSlotPrecheckId) {
|
|
this.agentSlotPrecheckId = agentSlotPrecheckId;
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* 预检接口返回的绑定凭证,必须由 AI owner 原子消费
|
|
* @return agentSlotPrecheckId
|
|
*/
|
|
@NotNull
|
|
@Schema(name = "agentSlotPrecheckId", description = "预检接口返回的绑定凭证,必须由 AI owner 原子消费", requiredMode = Schema.RequiredMode.REQUIRED)
|
|
@JsonProperty("agentSlotPrecheckId")
|
|
public String getAgentSlotPrecheckId() {
|
|
return agentSlotPrecheckId;
|
|
}
|
|
|
|
@JsonProperty("agentSlotPrecheckId")
|
|
public void setAgentSlotPrecheckId(String agentSlotPrecheckId) {
|
|
this.agentSlotPrecheckId = agentSlotPrecheckId;
|
|
}
|
|
|
|
public BindAgentSlotRequest 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 BindAgentSlotRequest 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 BindAgentSlotRequest 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 BindAgentSlotRequest expectedSlotRevision(Integer expectedSlotRevision) {
|
|
this.expectedSlotRevision = expectedSlotRevision;
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* 目标槽位当前 revision
|
|
* @return expectedSlotRevision
|
|
*/
|
|
@NotNull
|
|
@Schema(name = "expectedSlotRevision", description = "目标槽位当前 revision", requiredMode = Schema.RequiredMode.REQUIRED)
|
|
@JsonProperty("expectedSlotRevision")
|
|
public Integer getExpectedSlotRevision() {
|
|
return expectedSlotRevision;
|
|
}
|
|
|
|
@JsonProperty("expectedSlotRevision")
|
|
public void setExpectedSlotRevision(Integer expectedSlotRevision) {
|
|
this.expectedSlotRevision = expectedSlotRevision;
|
|
}
|
|
|
|
@Override
|
|
public boolean equals(Object o) {
|
|
if (this == o) {
|
|
return true;
|
|
}
|
|
if (o == null || getClass() != o.getClass()) {
|
|
return false;
|
|
}
|
|
BindAgentSlotRequest bindAgentSlotRequest = (BindAgentSlotRequest) o;
|
|
return Objects.equals(this.commandId, bindAgentSlotRequest.commandId) &&
|
|
Objects.equals(this.agentSlotPrecheckId, bindAgentSlotRequest.agentSlotPrecheckId) &&
|
|
Objects.equals(this.sourceAgentId, bindAgentSlotRequest.sourceAgentId) &&
|
|
Objects.equals(this.sourceAgentVersion, bindAgentSlotRequest.sourceAgentVersion) &&
|
|
Objects.equals(this.authorizationSnapshotId, bindAgentSlotRequest.authorizationSnapshotId) &&
|
|
Objects.equals(this.expectedSlotRevision, bindAgentSlotRequest.expectedSlotRevision);
|
|
}
|
|
|
|
@Override
|
|
public int hashCode() {
|
|
return Objects.hash(commandId, agentSlotPrecheckId, sourceAgentId, sourceAgentVersion, authorizationSnapshotId, expectedSlotRevision);
|
|
}
|
|
|
|
@Override
|
|
public String toString() {
|
|
StringBuilder sb = new StringBuilder();
|
|
sb.append("class BindAgentSlotRequest {\n");
|
|
sb.append(" commandId: ").append(toIndentedString(commandId)).append("\n");
|
|
sb.append(" agentSlotPrecheckId: ").append(toIndentedString(agentSlotPrecheckId)).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 ");
|
|
}
|
|
}
|
|
|