Skip to main content
Version: 2.0.9

DAVAccount

export type DAVAccount = {
accountType: 'caldav' | 'carddav';
serverUrl: string;
credentials?: DAVCredentials;
rootUrl?: string;
principalUrl?: string;
homeUrl?: string;
calendars?: DAVCalendar[];
addressBooks?: DAVAddressBook[];
};
  • accountType can be caldav or carddav
  • serverUrl server url of the account
  • credentials DAVCredentials
  • rootUrl root url of the account
  • principalUrl principal resource url
  • homeUrl resource home set url
  • calendars calendars of the account, will only be populated by createAccount
  • addressBooks addressBooks of the account, will only be populated by createAccount