Skip to content

Instantly share code, notes, and snippets.

@Fleker
Last active August 5, 2019 21:40
Show Gist options
  • Save Fleker/7ceb1b071f15731767eddc2021c6cdea to your computer and use it in GitHub Desktop.
Save Fleker/7ceb1b071f15731767eddc2021c6cdea to your computer and use it in GitHub Desktop.
interface TabletopAudioResponse {
tracks: TabletopAudioTrack[]
}
interface TabletopAudioSession {
json: TabletopAudioResponse,
currentTrack: TabletopAudioTrack
}
interface TabletopAudioTrack {
key: number,
track_title: string,
track_type: string,
track_genre: string[],
flavor_text: string,
link: string,
small_image: string,
large_image: string,
new: "true" | "false",
tags: string[]
}
interface Conv extends DialogflowConversation<TabletopAudioSession, {}, Contexts> {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment