Show / Hide Table of Contents

Class GoogleTypeLatLng

An object that represents a latitude/longitude pair. This is expressed as a pair of doubles to represent degrees latitude and degrees longitude. Unless specified otherwise, this must conform to the WGS84 standard. Values must be within normalized ranges.

Inheritance
System.Object
GoogleTypeLatLng
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.Dialogflow.v2.Data
Assembly: Google.Apis.Dialogflow.v2.dll
Syntax
public class GoogleTypeLatLng : IDirectResponseSchema

Properties

ETag

The ETag of the item.

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

Latitude

The latitude in degrees. It must be in the range [-90.0, +90.0].

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

Longitude

The longitude in degrees. It must be in the range [-180.0, +180.0].

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

Implements

IDirectResponseSchema
In This Article
Back to top