integerRange resource type

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 an inclusive range of integers described by two Int64 boundaries.

Properties

Property Type Description
start Int64 The inclusive lower bound of the integer range.
end Int64 The inclusive upper bound of the integer range.

JSON representation

The following is a JSON representation of the resource.

{
    "start": 12345,
    "end": 12345
}