package admin.model.maxdb.resp;

import com.google.gson.annotations.SerializedName;
import lombok.Data;

/**
 * @author lj
 * @date 2025/2/24 14:28
 */
@Data
public class ChatChildResponse {
    @SerializedName("runtime_node_id")
    private String runtimeNodeId;

    @SerializedName("chat_record_id")
    private String chatRecordId;

    @SerializedName("child_node")
    private ChatChildResponse childNode;
}