Show / Hide Table of Contents

Class DoubleRange

Specifies the double start and end of the range using half-open interval semantics [start, end).

Inheritance
System.Object
DoubleRange
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.TrafficDirectorService.v2.Data
Assembly: Google.Apis.TrafficDirectorService.v2.dll
Syntax
public class DoubleRange : IDirectResponseSchema

Properties

End

end of the range (exclusive)

Declaration
[JsonProperty("end")]
public virtual double? End { get; set; }
Property Value
Type Description
System.Nullable<System.Double>

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

Start

start of the range (inclusive)

Declaration
[JsonProperty("start")]
public virtual double? Start { get; set; }
Property Value
Type Description
System.Nullable<System.Double>

Implements

IDirectResponseSchema
In This Article
Back to top