Class Location
- Namespace
- OverKizApi.Models
- Assembly
- OverKizApi.dll
Geographical and address metadata associated with a Setup.
public sealed class Location
- Inheritance
-
Location
- Inherited Members
Properties
AddressLine1
First line of the street address.
public string? AddressLine1 { get; init; }
Property Value
AddressLine2
Second line of the street address (apartment, suite, etc.).
public string? AddressLine2 { get; init; }
Property Value
City
City name.
public string? City { get; init; }
Property Value
Country
Country name.
public string? Country { get; init; }
Property Value
CreationTime
Unix epoch millisecond timestamp when the location was created.
public long CreationTime { get; init; }
Property Value
DawnOffset
Manual dawn offset in minutes (positive = later, negative = earlier).
public int DawnOffset { get; init; }
Property Value
DuskOffset
Manual dusk offset in minutes (positive = later, negative = earlier).
public int DuskOffset { get; init; }
Property Value
LastUpdateTime
Unix epoch millisecond timestamp of the last update, or null if never updated.
public long? LastUpdateTime { get; init; }
Property Value
- long?
Latitude
Latitude coordinate in decimal degrees.
public double? Latitude { get; init; }
Property Value
Longitude
Longitude coordinate in decimal degrees.
public double? Longitude { get; init; }
Property Value
PostalCode
Postal / ZIP code.
public string? PostalCode { get; init; }
Property Value
SummerSolsticeDuskMinutes
Minutes after sunset at summer solstice (used for dusk offset calculations).
public int? SummerSolsticeDuskMinutes { get; init; }
Property Value
- int?
Timezone
IANA time zone identifier (e.g. "Europe/Paris").
public string? Timezone { get; init; }
Property Value
TwilightAngle
Twilight angle used for custom-mode calculations.
public string? TwilightAngle { get; init; }
Property Value
TwilightCity
City used for twilight calculations when TwilightMode is 3.
public string? TwilightCity { get; init; }
Property Value
TwilightMode
Twilight calculation mode (0 = civil, 1 = nautical, 2 = astronomical, 3 = custom city).
public int TwilightMode { get; init; }
Property Value
TwilightOffsetEnabled
Whether manual dawn/dusk offsets are enabled.
public bool TwilightOffsetEnabled { get; init; }
Property Value
WinterSolsticeDuskMinutes
Minutes after sunset at winter solstice (used for dusk offset calculations).
public int? WinterSolsticeDuskMinutes { get; init; }
Property Value
- int?