Show / Hide Table of Contents

Class GeographicalLocation

The geographical location of a problem in terms of latitude and longitude.

Inheritance
object
GeographicalLocation
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.CloudguardService.Models
Assembly: OCI.DotNetSDK.Cloudguard.dll
Syntax
public class GeographicalLocation

Properties

Latitude

Declaration
[Required(ErrorMessage = "Latitude is required.")]
[JsonProperty(PropertyName = "latitude")]
public double Latitude { get; set; }
Property Value
Type Description
double

Latitude of problem

Remarks

Required

Longitude

Declaration
[Required(ErrorMessage = "Longitude is required.")]
[JsonProperty(PropertyName = "longitude")]
public double Longitude { get; set; }
Property Value
Type Description
double

Longitude of problem

Remarks

Required

In this article
Back to top