18 lines
512 B
Go
18 lines
512 B
Go
package npcinteractions
|
|
|
|
type extractionResponse struct {
|
|
Occurrences []occurrenceResponse `json:"occurrences"`
|
|
}
|
|
|
|
type occurrenceResponse struct {
|
|
NPCID string `json:"npc_id"`
|
|
Name string `json:"name"`
|
|
Kind string `json:"kind"`
|
|
SourceRefs []interactionSourceRefResponse `json:"source_refs"`
|
|
}
|
|
|
|
type interactionSourceRefResponse struct {
|
|
StartUnitID int `json:"start_unit_id"`
|
|
EndUnitID int `json:"end_unit_id"`
|
|
}
|