17 lines
457 B
Go
17 lines
457 B
Go
package npcinteractions
|
|
|
|
type extractionResponse struct {
|
|
Interactions []interactionResponse `json:"interactions"`
|
|
}
|
|
|
|
type interactionResponse struct {
|
|
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"`
|
|
}
|