18 lines
600 B
Go
18 lines
600 B
Go
package scenes
|
|
|
|
type chunkResponse struct {
|
|
Scenes []sceneResponse `json:"scenes"`
|
|
BoundaryCaveats []string `json:"boundary_caveats"`
|
|
}
|
|
|
|
type sceneResponse struct {
|
|
StartUnitID string `json:"start_unit_id"`
|
|
EndUnitID string `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"`
|
|
}
|