Class LogLocationInfo
- Namespace
- Auth0.ManagementApi
- Assembly
- Auth0.ManagementApi.dll
Information about the location that triggered this event based on the ip.
[Serializable]
public record LogLocationInfo : IJsonOnDeserialized, IJsonOnSerializing, IEquatable<LogLocationInfo>
- Inheritance
-
LogLocationInfo
- Implements
- Inherited Members
- Extension Methods
Properties
AdditionalProperties
[JsonIgnore]
public AdditionalProperties AdditionalProperties { get; set; }
Property Value
CityName
Full city name in English.
[JsonPropertyName("city_name")]
public string? CityName { get; set; }
Property Value
ContinentCode
Continent the country is located within. Can be AF (Africa), AN (Antarctica), AS (Asia), EU (Europe), NA (North America), OC (Oceania) or SA (South America).
[JsonPropertyName("continent_code")]
public string? ContinentCode { get; set; }
Property Value
CountryCode
Two-letter Alpha-2 ISO 3166-1 country code.
[JsonPropertyName("country_code")]
public string? CountryCode { get; set; }
Property Value
CountryCode3
Three-letter Alpha-3 ISO 3166-1 country code.
[JsonPropertyName("country_code3")]
public string? CountryCode3 { get; set; }
Property Value
CountryName
Full country name in English.
[JsonPropertyName("country_name")]
public string? CountryName { get; set; }
Property Value
Latitude
Global latitude (horizontal) position.
[JsonPropertyName("latitude")]
public double? Latitude { get; set; }
Property Value
Longitude
Global longitude (vertical) position.
[JsonPropertyName("longitude")]
public double? Longitude { get; set; }
Property Value
TimeZone
Time zone name as found in the tz database.
[JsonPropertyName("time_zone")]
public string? TimeZone { get; set; }
Property Value
Methods
ToString()
Returns a string that represents the current object.
public override string ToString()
Returns
- string
A string that represents the current object.