Interface Location

interface Location {
    _id: string;
    holidayCountryLanguage: string;
    holidayIds: string;
    holidaySubregion: string;
    icsLink: string;
    inheritHolidays: boolean;
    mainLocation: boolean;
    memberCount: number;
    memberIds: string[];
    name: string;
}

Hierarchy

Properties

_id: string

unique identifier

holidayCountryLanguage: string

the region used to determine the translated names of the holidays. Seperation to region needed when setting to custom.

holidayIds: string

list of holidays assigned to the location

holidaySubregion: string

the region used to rectrieve the holidays for this user. eg. "de-by"

icsLink: string

ics link for viewing absences in external applications, prefix: https://app.absence.io/

inheritHolidays: boolean

indicates if holidays are to be inherited from the main location

mainLocation: boolean

bool to display if the location is the main one or not

memberCount: number

count of users who are members of the location

memberIds: string[]

list of users who are members of the location

name: string

the name of the location

Generated using TypeDoc