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
Id
Alias for Oid; provided for convenience.
public string? Id { get; }
Property Value
Label
User-visible label for the place (e.g. "Living Room").
public string? Label { get; init; }
Property Value
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
SubPlaces
Child places (floors within a house, rooms within a floor).
public IReadOnlyList<Place> SubPlaces { get; init; }
Property Value
Type
Place type: 0 = house, 1 = floor, 2 = room.
public int Type { get; init; }