Class EnterpriseVenue

An EnterpriseVenue is a specific place (like a mall, office building, or stadium) with one or more Floors

Hierarchy

  • default
    • EnterpriseVenue

Implements

  • EnterpriseVenue

Properties

countrycode?: string

The ISO 3166-1 alpha-2 country code of the venue, if known

Eg. US or GB

defaultLanguage: Language = ...
defaultMap?: string
externalId: string = ''
extra?: Record<string, unknown>
icon?: string

The venue's icon

uri

id: string

identity of the map object

languages: Language[] = []
links: Hyperlink[] = []

Gets the links associated with this data type.

The links associated with this data type

logo?: string

The venue's logo

uri

mappedinWebUrl?: string

The base URL for Mappedin Web for this venue

Better name?

slug: string = ''
topLocations?: string[]
tzid?: string

The venue's timezone, from the IANA Time Zone Database. Should be in the format of America/New_York

^[A-Za-z0-9/_-]+$

Accessors

  • get name(): string
  • Gets the name of the EnterpriseVenue.

    Returns string

    The name of the EnterpriseVenue.

Methods

  • Serializes the EnterpriseVenue data to JSON.

    Returns {
        id: string;
        name: string;
    }

    An object representing the EnterpriseVenue.

    • id: string
    • name: string
  • Checks if the provided instance is of type EnterpriseVenue.

    Parameters

    • instance: object

      The instance to check.

    Returns instance is EnterpriseVenue

    True if the instance is a EnterpriseVenue, false otherwise.