Venue Info Response
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())