261 lines
7.4 KiB
Java
261 lines
7.4 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.ArrayList;
|
|
import java.util.Arrays;
|
|
import java.util.List;
|
|
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;
|
|
|
|
/**
|
|
* AdminCreateAgentVersionRequest
|
|
*/
|
|
|
|
@JsonTypeName("adminCreateAgentVersion_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 AdminCreateAgentVersionRequest implements Serializable {
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
private @Nullable String name;
|
|
|
|
private @Nullable String description;
|
|
|
|
private @Nullable String promptKey;
|
|
|
|
private @Nullable Object slotBindings;
|
|
|
|
@Valid
|
|
private List<String> toolGrantIds = new ArrayList<>();
|
|
|
|
private String changeNote;
|
|
|
|
private String commandId;
|
|
|
|
public AdminCreateAgentVersionRequest() {
|
|
super();
|
|
}
|
|
|
|
/**
|
|
* Constructor with only required parameters
|
|
*/
|
|
public AdminCreateAgentVersionRequest(String changeNote, String commandId) {
|
|
this.changeNote = changeNote;
|
|
this.commandId = commandId;
|
|
}
|
|
|
|
public AdminCreateAgentVersionRequest name(@Nullable String name) {
|
|
this.name = name;
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* Get name
|
|
* @return name
|
|
*/
|
|
@Size(max = 100)
|
|
@Schema(name = "name", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
|
|
@JsonProperty("name")
|
|
public @Nullable String getName() {
|
|
return name;
|
|
}
|
|
|
|
@JsonProperty("name")
|
|
public void setName(@Nullable String name) {
|
|
this.name = name;
|
|
}
|
|
|
|
public AdminCreateAgentVersionRequest description(@Nullable String description) {
|
|
this.description = description;
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* Get description
|
|
* @return description
|
|
*/
|
|
@Size(max = 1000)
|
|
@Schema(name = "description", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
|
|
@JsonProperty("description")
|
|
public @Nullable String getDescription() {
|
|
return description;
|
|
}
|
|
|
|
@JsonProperty("description")
|
|
public void setDescription(@Nullable String description) {
|
|
this.description = description;
|
|
}
|
|
|
|
public AdminCreateAgentVersionRequest promptKey(@Nullable String promptKey) {
|
|
this.promptKey = promptKey;
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* Get promptKey
|
|
* @return promptKey
|
|
*/
|
|
|
|
@Schema(name = "promptKey", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
|
|
@JsonProperty("promptKey")
|
|
public @Nullable String getPromptKey() {
|
|
return promptKey;
|
|
}
|
|
|
|
@JsonProperty("promptKey")
|
|
public void setPromptKey(@Nullable String promptKey) {
|
|
this.promptKey = promptKey;
|
|
}
|
|
|
|
public AdminCreateAgentVersionRequest slotBindings(@Nullable Object slotBindings) {
|
|
this.slotBindings = slotBindings;
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* Get slotBindings
|
|
* @return slotBindings
|
|
*/
|
|
|
|
@Schema(name = "slotBindings", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
|
|
@JsonProperty("slotBindings")
|
|
public @Nullable Object getSlotBindings() {
|
|
return slotBindings;
|
|
}
|
|
|
|
@JsonProperty("slotBindings")
|
|
public void setSlotBindings(@Nullable Object slotBindings) {
|
|
this.slotBindings = slotBindings;
|
|
}
|
|
|
|
public AdminCreateAgentVersionRequest toolGrantIds(List<String> toolGrantIds) {
|
|
this.toolGrantIds = toolGrantIds;
|
|
return this;
|
|
}
|
|
|
|
public AdminCreateAgentVersionRequest addToolGrantIdsItem(String toolGrantIdsItem) {
|
|
if (this.toolGrantIds == null) {
|
|
this.toolGrantIds = new ArrayList<>();
|
|
}
|
|
this.toolGrantIds.add(toolGrantIdsItem);
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* 关联的系统级工具授权 ID 列表,必须来自 Security facade 已批准的授权。
|
|
* @return toolGrantIds
|
|
*/
|
|
|
|
@Schema(name = "toolGrantIds", description = "关联的系统级工具授权 ID 列表,必须来自 Security facade 已批准的授权。", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
|
|
@JsonProperty("toolGrantIds")
|
|
public List<String> getToolGrantIds() {
|
|
return toolGrantIds;
|
|
}
|
|
|
|
@JsonProperty("toolGrantIds")
|
|
public void setToolGrantIds(List<String> toolGrantIds) {
|
|
this.toolGrantIds = toolGrantIds;
|
|
}
|
|
|
|
public AdminCreateAgentVersionRequest changeNote(String changeNote) {
|
|
this.changeNote = changeNote;
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* 版本变更说明
|
|
* @return changeNote
|
|
*/
|
|
@NotNull
|
|
@Schema(name = "changeNote", description = "版本变更说明", requiredMode = Schema.RequiredMode.REQUIRED)
|
|
@JsonProperty("changeNote")
|
|
public String getChangeNote() {
|
|
return changeNote;
|
|
}
|
|
|
|
@JsonProperty("changeNote")
|
|
public void setChangeNote(String changeNote) {
|
|
this.changeNote = changeNote;
|
|
}
|
|
|
|
public AdminCreateAgentVersionRequest 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;
|
|
}
|
|
|
|
@Override
|
|
public boolean equals(Object o) {
|
|
if (this == o) {
|
|
return true;
|
|
}
|
|
if (o == null || getClass() != o.getClass()) {
|
|
return false;
|
|
}
|
|
AdminCreateAgentVersionRequest adminCreateAgentVersionRequest = (AdminCreateAgentVersionRequest) o;
|
|
return Objects.equals(this.name, adminCreateAgentVersionRequest.name) &&
|
|
Objects.equals(this.description, adminCreateAgentVersionRequest.description) &&
|
|
Objects.equals(this.promptKey, adminCreateAgentVersionRequest.promptKey) &&
|
|
Objects.equals(this.slotBindings, adminCreateAgentVersionRequest.slotBindings) &&
|
|
Objects.equals(this.toolGrantIds, adminCreateAgentVersionRequest.toolGrantIds) &&
|
|
Objects.equals(this.changeNote, adminCreateAgentVersionRequest.changeNote) &&
|
|
Objects.equals(this.commandId, adminCreateAgentVersionRequest.commandId);
|
|
}
|
|
|
|
@Override
|
|
public int hashCode() {
|
|
return Objects.hash(name, description, promptKey, slotBindings, toolGrantIds, changeNote, commandId);
|
|
}
|
|
|
|
@Override
|
|
public String toString() {
|
|
StringBuilder sb = new StringBuilder();
|
|
sb.append("class AdminCreateAgentVersionRequest {\n");
|
|
sb.append(" name: ").append(toIndentedString(name)).append("\n");
|
|
sb.append(" description: ").append(toIndentedString(description)).append("\n");
|
|
sb.append(" promptKey: ").append(toIndentedString(promptKey)).append("\n");
|
|
sb.append(" slotBindings: ").append(toIndentedString(slotBindings)).append("\n");
|
|
sb.append(" toolGrantIds: ").append(toIndentedString(toolGrantIds)).append("\n");
|
|
sb.append(" changeNote: ").append(toIndentedString(changeNote)).append("\n");
|
|
sb.append(" commandId: ").append(toIndentedString(commandId)).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 ");
|
|
}
|
|
}
|
|
|