WaitTimes

Returns the wait time for a specific location.

This dynamic query returns the wait time for a specific location. A wait_time request must be made for each user interaction.

Constructors

Link copied to clipboard
constructor(waitTimes: List<WaitTime>)

Properties

Link copied to clipboard
open override val size: Int
Link copied to clipboard
@SerialName(value = "wait_times")
val waitTimes: List<WaitTime>

An array that contains one object per brand_id. Should be empty if no wait time is available for the requested location.

Functions

Link copied to clipboard
open operator override fun contains(element: WaitTime): Boolean
Link copied to clipboard
open override fun containsAll(elements: Collection<WaitTime>): Boolean
Link copied to clipboard
open operator override fun get(index: Int): WaitTime
Link copied to clipboard
open override fun indexOf(element: WaitTime): Int
Link copied to clipboard
open override fun isEmpty(): Boolean
Link copied to clipboard
open operator override fun iterator(): Iterator<WaitTime>
Link copied to clipboard
open override fun lastIndexOf(element: WaitTime): Int
Link copied to clipboard
open override fun listIterator(): ListIterator<WaitTime>
open override fun listIterator(index: Int): ListIterator<WaitTime>
Link copied to clipboard
open override fun subList(fromIndex: Int, toIndex: Int): List<WaitTime>