Last active
August 5, 2019 21:40
-
-
Save Fleker/7ceb1b071f15731767eddc2021c6cdea to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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