Show
The TSL Android SDK provides methods for fetching details of a specific show and its current event, enabling you to get show and current event details in your app.
Methods
getDetails(showKey: String, callback: GetDetailsCallback)
getDetails(showKey: String, callback: GetDetailsCallback)
Get detailed information about a specific show.
- Parameters:
showKey
: The unique identifier of the show.callback
: An optional callback that will be called once the show details are fetched or an error is thrown.
Show.getDetails(showKey) { error, show -> }
getStatus(showKey: String, callback: GetStatusShowCallback)
getStatus(showKey: String, callback: GetStatusShowCallback)
Get the current event of a show.
- Parameters:
showKey
: The unique identifier of the show.callback
: A optional callback that will be called once the show status is fetched or an error is thrown.
Show.getStatus(showKey) { error, show -> }
Updated 7 months ago