Notatka
Dostęp do tej strony wymaga autoryzacji. Może spróbować zalogować się lub zmienić katalogi.
Dostęp do tej strony wymaga autoryzacji. Możesz spróbować zmienić katalogi.
Namespace: microsoft.graph
Important
APIs under the /beta version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.
Represents a floor within a building. A building is always the parent of a floor.
Inherits from place.
Methods
For the list of supported methods, see place.
Properties
| Property | Type | Description |
|---|---|---|
| address | physicalAddress | The physical address of the floor, including the street, city, state, country or region, and postal code. Inherited from place. |
| customProperties | stringDictionary | Custom properties for the floor. Each property has a string key and a string value. Inherited from place. Nullable. |
| displayName | String | The name that is associated with the floor. Inherited from place. |
| geoCoordinates | outlookGeoCoordinates | Specifies the floor location in latitude, longitude, and (optionally) altitude coordinates. Inherited from place. |
| id | String | The unique identifier for the floor. Read-only. This identifier isn't immutable and can change if the mailbox or tenant configuration changes. Inherited from place. |
| isWheelChairAccessible | Boolean | Indicates whether floor is wheelchair accessible. Inherited from place. |
| label | String | User-defined description of the floor. Inherited from place. |
| lastUpdatedTime | DateTimeOffset | The date and time when the floor was last updated. The timestamp is in ISO 8601 format and is always in UTC. Inherited from place. Read-only. Nullable. |
| parentId | String | The ID of a parent building. Inherited from place. |
| phone | String | The phone number of the floor. Inherited from place. |
| sortOrder | Int32 | Specifies the sort order of the floor. For example, a floor might be named "Lobby" with a sort order of 0 to show this floor first in ordered lists. |
| tags | String collection | Custom tags that are associated with the floor for categorization or filtering. Inherited from place. |
Relationships
| Relationship | Type | Description |
|---|---|---|
| children | place collection | A collection of child places that is only used in the Upsert places API. The children of a floor can be of type section or room. Inherited from place. |
JSON representation
The following JSON representation shows the resource type.
{
"@odata.type": "#microsoft.graph.floor",
"address": {"@odata.type": "microsoft.graph.physicalAddress"},
"customProperties": {"String": "String"},
"displayName": "String",
"geoCoordinates": {"@odata.type": "microsoft.graph.outlookGeoCoordinates"},
"id": "String (identifier)",
"isWheelChairAccessible": "Boolean",
"label": "String",
"lastUpdatedTime": "String (timestamp)",
"parentId": "String",
"phone": "String",
"sortOrder": "Int32",
"tags": ["String"]
}