/**
 * Copyright (c) Microsoft Corporation. All rights reserved.
 * Licensed under the MIT License.
 */

/**
 * Represents a Place entity.
 */
export interface Place {
  /**
   * The address of the place.
   */
  address: unknown
  /**
   * The geographical coordinates of the place.
   */
  geo: unknown
  /**
   * A map that shows the place.
   */
  hasMap: unknown
  /**
   * The type of the place.
   */
  type: string
  /**
   * The name of the place.
   */
  name: string
}
