interface Venue {
    id: string;
    name: string;
    city: string;
    countryId: string;
    country: string;
    countryCode: string;
    address: string;
    capacity: number;
    surface: string;
    mapsGeoCodeLatitude: string;
    mapsGeoCodeLongitude: string;
    timeZone: string;
    contestant: API.soccer.Venues.Contestant[];
    opened?: number;
}

Properties

id: string
name: string
city: string
countryId: string
country: string
countryCode: string
address: string
capacity: number
surface: string
mapsGeoCodeLatitude: string
mapsGeoCodeLongitude: string
timeZone: string
contestant: API.soccer.Venues.Contestant[]
opened?: number