Table of Contents

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

string

AddressLine2

Second line of the street address (apartment, suite, etc.).

public string? AddressLine2 { get; init; }

Property Value

string

City

City name.

public string? City { get; init; }

Property Value

string

Country

Country name.

public string? Country { get; init; }

Property Value

string

CreationTime

Unix epoch millisecond timestamp when the location was created.

public long CreationTime { get; init; }

Property Value

long

DawnOffset

Manual dawn offset in minutes (positive = later, negative = earlier).

public int DawnOffset { get; init; }

Property Value

int

DuskOffset

Manual dusk offset in minutes (positive = later, negative = earlier).

public int DuskOffset { get; init; }

Property Value

int

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

double?

Longitude

Longitude coordinate in decimal degrees.

public double? Longitude { get; init; }

Property Value

double?

PostalCode

Postal / ZIP code.

public string? PostalCode { get; init; }

Property Value

string

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

string

TwilightAngle

Twilight angle used for custom-mode calculations.

public string? TwilightAngle { get; init; }

Property Value

string

TwilightCity

City used for twilight calculations when TwilightMode is 3.

public string? TwilightCity { get; init; }

Property Value

string

TwilightMode

Twilight calculation mode (0 = civil, 1 = nautical, 2 = astronomical, 3 = custom city).

public int TwilightMode { get; init; }

Property Value

int

TwilightOffsetEnabled

Whether manual dawn/dusk offsets are enabled.

public bool TwilightOffsetEnabled { get; init; }

Property Value

bool

WinterSolsticeDuskMinutes

Minutes after sunset at winter solstice (used for dusk offset calculations).

public int? WinterSolsticeDuskMinutes { get; init; }

Property Value

int?