VenueAddress

data class VenueAddress(val line1: String?, val city: String?, val state: String?, val postalCode: String?, val country: String?, val cityUrl: String?)

Represents a venue's address details in the Discovery API.

Holds address components and a city URL for a venue.

Constructors

Link copied to clipboard
constructor(line1: String?, city: String?, state: String?, postalCode: String?, country: String?, cityUrl: String?)

Properties

Link copied to clipboard
val city: String?

The city name, if available.

Link copied to clipboard

The URL for the city, if available.

Link copied to clipboard

The country name, if available.

Link copied to clipboard

The first line of the address, if available.

Link copied to clipboard

The postal code, if available.

Link copied to clipboard

The state or region, if available.