Class GeographicalLocation
The geographical location of a problem in terms of latitude and longitude.
Inherited Members
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