Show / Hide Table of Contents

Class GeodataDetails

Geodata information for a given IP address

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

Properties

AdminDiv

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

State/Province/subdivision within the country

Remarks

Required

City

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

City of origin

Remarks

Required

CountryCode

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

Two-letter abbreviation for country of origin

Remarks

Required

GeoId

Declaration
[JsonProperty(PropertyName = "geoId")]
public string GeoId { get; set; }
Property Value
Type Description
string

Unique Identifier (optional)

Label

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

Information on source providing the information

Remarks

Required

Latitude

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

Latitude

Remarks

Required

Longitude

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

Longitude

Remarks

Required

Origin

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

ASN entry

Remarks

Required

RoutedPrefix

Declaration
[JsonProperty(PropertyName = "routedPrefix")]
public string RoutedPrefix { get; set; }
Property Value
Type Description
string

Encompassing assigned prefix for the IP

In this article
Back to top