ODataPathKind Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Enum types for Edm path.
public enum ODataPathKind
type ODataPathKind =
Public Enum ODataPathKind
- Inheritance
-
ODataPathKind
Fields
| Name | Value | Description |
|---|---|---|
| EntitySet | 0 | Represents an entity set path. for example: ~/users |
| Entity | 1 | Represents an entity path, for example: ~/users/{id} |
| Singleton | 2 | Represents a singleton path, for example: ~/me |
| Operation | 3 | Represents an operation (function or action) path, for example: ~/users/NS.findRooms(roomId='{roomId}') |
| OperationImport | 4 | Represents an operation import (function import or action import path), for example: ~/ResetData |
| NavigationProperty | 5 | Represents an navigation property path, for example: ~/users/{id}/onedrive |
| Ref | 6 | Represents an navigation property $ref path, for example: ~/users/{id}/onedrive/$ref |
| MediaEntity | 7 | Represents a media entity path, for example: ~/me/photo/$value or ~/reports/deviceConfigurationUserActivity/Content |
| Metadata | 8 | Represents a $metadata path |
| DollarCount | 9 | Represents a $count path, for example: ~/customers/$count |
| TypeCast | 10 | Represents a type cast path, for example: ~/groups/{id}/members/microsoft.graph.user |
| ComplexProperty | 11 | Represents a path item for a property of type complex. |
| Unknown | 12 | Represents an un-supported/unknown path. |