Class Range
A range of values, bounded by the values 'start' (inclusive) and 'end' (exclusive). A range has an element type, and values must be of this element type. A range is contiguous, ie it contains all values of the given element type starting at 'start' and ending before 'end'. A "null" value on start or end represents an unbounded start or end value respectively. Start and end values must always be present.
Implements
Inherited Members
Namespace: Google.Apis.Cloudbilling.v1beta.Data
Assembly: Google.Apis.Cloudbilling.v1beta.dll
Syntax
public class Range : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
End
Represents the end of the range.
Declaration
[JsonProperty("end")]
public virtual ValueProto End { get; set; }
Property Value
| Type | Description |
|---|---|
| ValueProto |
Start
Represents the start of the range.
Declaration
[JsonProperty("start")]
public virtual ValueProto Start { get; set; }
Property Value
| Type | Description |
|---|---|
| ValueProto |