integerRange resource type

Namespace: microsoft.graph

Represents an inclusive range of integers described by two Int64 boundaries.

Properties

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

JSON representation

The following is a JSON representation of the resource.

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