@microsoft/agents-activity
Version:
Microsoft 365 Agents SDK for JavaScript. Activity Protocol serialization and deserialization.
31 lines (29 loc) • 480 B
text/typescript
/**
* 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
}