31 lines
951 B
Go
31 lines
951 B
Go
package scenes
|
|
|
|
import "gitea.maximumdirect.net/eric/notarius/internal/modules/sharedassets/dnd"
|
|
|
|
type chunkResponse struct {
|
|
Scenes []sceneResponse `json:"scenes"`
|
|
BoundaryCaveats []string `json:"boundary_caveats"`
|
|
}
|
|
|
|
type sceneResponse struct {
|
|
StartUnitID dnd.UnitRef `json:"start_unit_id"`
|
|
EndUnitID dnd.UnitRef `json:"end_unit_id"`
|
|
ShortTitle string `json:"short_title"`
|
|
PrimaryMode string `json:"primary_mode"`
|
|
MainParticipants []string `json:"main_participants"`
|
|
Summary string `json:"summary"`
|
|
BoundaryNote string `json:"boundary_note"`
|
|
BoundaryConfidence string `json:"boundary_confidence"`
|
|
}
|
|
|
|
type normalizedScene struct {
|
|
StartUnitID int
|
|
EndUnitID int
|
|
ShortTitle string
|
|
PrimaryMode string
|
|
MainParticipants []string
|
|
Summary string
|
|
BoundaryNote string
|
|
BoundaryConfidence string
|
|
}
|