VenueInfoResponse

data class VenueInfoResponse(val name: String?, val id: String?, val canonicalUrl: String?, val canonicalUrls: CanonicalUrls?, val imageUrl: String?, val address: VenueAddress?, val location: Location?, val generalInfoBlocks: GeneralInfoBlocks?, val notFound: Boolean?, val filters: Filters?, val seatMaps: List<Any> = emptyList())

Represents a venue information response from the Discovery API.

Holds venue details, including name, address, and filters.

Constructors

Link copied to clipboard
constructor(name: String?, id: String?, canonicalUrl: String?, canonicalUrls: CanonicalUrls?, imageUrl: String?, address: VenueAddress?, location: Location?, generalInfoBlocks: GeneralInfoBlocks?, notFound: Boolean?, filters: Filters?, seatMaps: List<Any> = emptyList())

Properties

Link copied to clipboard

The venue's address details, if available.

Link copied to clipboard

The primary canonical URL, if available.

Link copied to clipboard

Locale-specific URLs, if available.

Link copied to clipboard

Filters applied to the venue data, if available.

Link copied to clipboard

General information about the venue, if available.

Link copied to clipboard
val id: String?

The venue's ID, if available.

Link copied to clipboard

The URL for the venue's image, if available.

Link copied to clipboard

The venue's geographic coordinates, if available.

Link copied to clipboard
val name: String?

The venue's name, if available.

Link copied to clipboard

Indicates if the venue was not found, if available.

Link copied to clipboard

List of seat map data, defaults to empty list.