Skip to main content

Occupancy

An occupancy of an apartment. Can be a rent contract or other occupancy.

interface Occupancy {
endsAt: Date
id: OccupancyID!
startsAt: Date!
type: OccupancyType!
}

Fields

Occupancy.endsAt ● Date scalar

The end date of this occupancy.

Occupancy.id ● OccupancyID! non-null scalar

Unique identifier of this occupancy.

Occupancy.startsAt ● Date! non-null scalar

The start date of this occupancy.

Occupancy.type ● OccupancyType! non-null enum

type of this occupancy.

Returned By

occupancy query

Member Of

Apartment object

Implemented By

OtherOccupancy object ● RentContract object