Table of Contents

Class Place

Namespace
OverKizApi.Models
Assembly
OverKizApi.dll

A place in the home hierarchy (house, floor, or room).

public sealed class Place
Inheritance
Place
Inherited Members

Properties

CreationTime

Unix epoch millisecond timestamp when the place was created.

public long CreationTime { get; init; }

Property Value

long

Id

Alias for Oid; provided for convenience.

public string? Id { get; }

Property Value

string

Label

User-visible label for the place (e.g. "Living Room").

public string? Label { get; init; }

Property Value

string

LastUpdateTime

Unix epoch millisecond timestamp of the most recent update, or null if never updated.

public long? LastUpdateTime { get; init; }

Property Value

long?

Oid

Unique OID of this place.

public string? Oid { get; init; }

Property Value

string

SubPlaces

Child places (floors within a house, rooms within a floor).

public IReadOnlyList<Place> SubPlaces { get; init; }

Property Value

IReadOnlyList<Place>

Type

Place type: 0 = house, 1 = floor, 2 = room.

public int Type { get; init; }

Property Value

int