domigo

package module
v0.0.2 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jan 24, 2025 License: MIT Imports: 8 Imported by: 0

README

DomiGo

DomiGo is a Go interface to access HCL Domino. Please be aware that at this point there are several methods that are not working properly yet (either due to wrong type implementations or stuff I just couldn't test properly due to my setup). So please feel free to participate.

go get -u "github.com/monstermichl/domigo"

Usage

To get access to HCL Domino, just call the domigo.Initialize. The function returns a NotesSession struct which can then be used as described in the NotesSession documentation.

IMPORTANT: The structs/struct-slices which are returned by some methods must be released by calling the Release-function (e.g. defer session.Release()).

IMPORTANT: If you're using a 32 bit installation of HCL Domino, make sure to set the environment variable GOARCH=386.

package main

import (
    "fmt"
    "github.com/monstermichl/domigo"
)

func main() {
    // Initialize session.
    session, err := domigo.Initialize()
    defer session.Release()

    if err != nil {
        fmt.Println(err)
        return
    }

    // Get local database via session.
    db, err := session.GetDatabase("", "TestDatabase.nsf")
    defer db.Release()

    if err != nil {
        fmt.Println(err)
        return
    }

    // Get database title.
    title, err := db.Title()
    if err != nil {
        fmt.Println(err)
        return
    }
    fmt.Println("Title", title)
}

Test

See README.md

Documentation

Overview

https://help.hcl-software.com/dom_designer/14.0.0/basic/H_NOTESACL_CLASS.html

https://help.hcl-software.com/dom_designer/14.0.0/basic/H_NOTESACLENTRY_CLASS.html

https://help.hcl-software.com/dom_designer/14.0.0/basic/H_NOTESADMINISTRATIONPROCESS_CLASS.html

https://help.hcl-software.com/dom_designer/14.0.0/basic/H_NOTESAGENT_CLASS.html

https://help.hcl-software.com/dom_designer/14.0.0/basic/H_NOTESCALENDAR_CLASS.html

https://help.hcl-software.com/dom_designer/14.0.0/basic/H_NOTESCALENDARENTRY_CLASS.html

https://help.hcl-software.com/dom_designer/14.0.0/basic/H_NOTESCALENDARNOTICE_CLASS.html

https://help.hcl-software.com/dom_designer/14.0.0/basic/H_NOTESCOLOROBJECT_CLASS.html

https://help.hcl-software.com/dom_designer/14.0.0/basic/H_NOTESDATABASE_CLASS.html

https://help.hcl-software.com/dom_designer/14.0.0/basic/H_NOTESDATERANGE_CLASS.html

https://help.hcl-software.com/dom_designer/14.0.0/basic/H_NOTESDATETIME_CLASS.html

https://help.hcl-software.com/dom_designer/14.0.0/basic/H_NOTESDBDIRECTORY_CLASS.html

https://help.hcl-software.com/dom_designer/14.0.0/basic/H_NOTESDIRECTORY_CLASS.html

https://help.hcl-software.com/dom_designer/14.0.0/basic/H_NOTESDIRECTORYNAVIGATOR_CLASS.html

https://help.hcl-software.com/dom_designer/14.0.0/basic/H_NOTESDOCUMENT_CLASS.html

https://help.hcl-software.com/dom_designer/14.0.0/basic/H_NOTESDOCUMENTCOLLECTION_CLASS.html

https://help.hcl-software.com/dom_designer/14.0.0/basic/H_NOTESDOMINOQUERY_CLASS.html

https://help.hcl-software.com/dom_designer/14.0.0/basic/H_NOTESDXLEXPORTER_CLASS.html

https://help.hcl-software.com/dom_designer/14.0.0/basic/H_NOTESDXLIMPORTER_CLASS.html

https://help.hcl-software.com/dom_designer/14.0.0/basic/H_NOTESEMBEDDEDOBJECT_CLASS.html

https://help.hcl-software.com/dom_designer/14.0.0/basic/H_NOTESFORM_CLASS.html

https://help.hcl-software.com/dom_designer/14.0.0/basic/H_NOTESINTERNATIONAL_CLASS.html

https://help.hcl-software.com/dom_designer/14.0.0/basic/H_NOTESITEM_CLASS.html

https://help.hcl-software.com/dom_designer/14.0.0/basic/H_NOTESLOG_CLASS.html

https://help.hcl-software.com/dom_designer/14.0.0/basic/H_NOTESMIMEENTITY_CLASS_OVERVIEW.html

https://help.hcl-software.com/dom_designer/14.0.0/basic/H_NOTESMIMEHEADER_CLASS.html

https://help.hcl-software.com/dom_designer/14.0.0/basic/H_NOTESNAME_CLASS.html

https://help.hcl-software.com/dom_designer/14.0.0/basic/H_NOTESNEWSLETTER_CLASS.html

https://help.hcl-software.com/dom_designer/14.0.0/basic/H_NOTESNOTECOLLECTION_CLASS.html

https://help.hcl-software.com/dom_designer/14.0.0/basic/H_NOTESOUTLINE_CLASS.html

https://help.hcl-software.com/dom_designer/14.0.0/basic/H_NOTESOUTLINEENTRY_CLASS.html

https://help.hcl-software.com/dom_designer/14.0.0/basic/H_NOTESPROPERTY_CLASS.html

https://help.hcl-software.com/dom_designer/14.0.0/basic/H_NOTESPROPERTYBROKER_CLASS.html

https://help.hcl-software.com/dom_designer/14.0.0/basic/H_NOTESQUERYRESULTSPROCESSOR_CLASS.html

https://help.hcl-software.com/dom_designer/14.0.0/basic/H_NOTESREGISTRATION_CLASS.html

https://help.hcl-software.com/dom_designer/14.0.0/basic/H_NOTESREPLICATION_CLASS_1289.html

https://help.hcl-software.com/dom_designer/14.0.0/basic/H_NOTESREPLICATIONENTRY_CLASS.html

https://help.hcl-software.com/dom_designer/10.0.1/basic/H_NOTESRICHTEXTITEM_CLASS.html

https://help.hcl-software.com/dom_designer/14.0.0/basic/H_NOTESRICHTEXTNAVIGATOR_CLASS.html

https://help.hcl-software.com/dom_designer/14.0.0/basic/H_NOTESRICHTEXTPARAGRAPHSTYLE_CLASS_3756.html

https://help.hcl-software.com/dom_designer/14.0.0/basic/H_NOTESRICHTEXTRANGE_CLASS.html

https://help.hcl-software.com/dom_designer/14.0.0/basic/H_NOTESRICHTEXTSTYLE_CLASS.html

https://help.hcl-software.com/dom_designer/14.0.0/basic/H_RICHTEXTTAB_CLASS.html

https://help.hcl-software.com/dom_designer/14.0.0/basic/H_NOTESSESSION_CLASS.html

https://help.hcl-software.com/dom_designer/14.0.0/basic/H_NOTESSTREAM_CLASS.html

https://help.hcl-software.com/dom_designer/14.0.0/basic/H_NOTESUSERID_CLASS.html

https://help.hcl-software.com/dom_designer/14.0.0/basic/H_NOTESVIEW_CLASS.html

https://help.hcl-software.com/dom_designer/14.0.0/basic/H_NOTESVIEWCOLUMN_CLASS.html

https://help.hcl-software.com/dom_designer/14.0.0/basic/H_NOTESVIEWENTRY_CLASS_2925.html

https://help.hcl-software.com/dom_designer/14.0.0/basic/H_NOTESVIEWENTRYCOLLECTION_9327.html

https://help.hcl-software.com/dom_designer/14.0.0/basic/H_NOTESVIEWNAVIGATOR_CLASS.html

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func WithGetNotesFontAddOnFail

func WithGetNotesFontAddOnFail(addOnFail Boolean) notesRichTextItemGetNotesFontParam

func WithNotesAdministrationProcessConfigureMailAgentActivatable

func WithNotesAdministrationProcessConfigureMailAgentActivatable(activatable Boolean) notesAdministrationProcessConfigureMailAgentParam

func WithNotesAdministrationProcessConfigureMailAgentEnable

func WithNotesAdministrationProcessConfigureMailAgentEnable(enable Boolean) notesAdministrationProcessConfigureMailAgentParam

func WithNotesAdministrationProcessCreateReplicaCopyacl

func WithNotesAdministrationProcessCreateReplicaCopyacl(copyacl Boolean) notesAdministrationProcessCreateReplicaParam

func WithNotesAdministrationProcessCreateReplicaCreateftindex

func WithNotesAdministrationProcessCreateReplicaCreateftindex(createftindex Boolean) notesAdministrationProcessCreateReplicaParam

func WithNotesAdministrationProcessCreateReplicaDestdbfile

func WithNotesAdministrationProcessCreateReplicaDestdbfile(destdbfile String) notesAdministrationProcessCreateReplicaParam

func WithNotesAdministrationProcessDeleteGroupDeletewindowsgroup

func WithNotesAdministrationProcessDeleteGroupDeletewindowsgroup(deletewindowsgroup Boolean) notesAdministrationProcessDeleteGroupParam

func WithNotesAdministrationProcessDeleteUserDeletewindowsuser

func WithNotesAdministrationProcessDeleteUserDeletewindowsuser(deletewindowsuser Boolean) notesAdministrationProcessDeleteUserParam

func WithNotesAdministrationProcessDeleteUserIdvaultaction

func WithNotesAdministrationProcessDeleteUserIdvaultaction(idvaultaction Integer) notesAdministrationProcessDeleteUserParam

func WithNotesAdministrationProcessMoveMailUserDeleteoldclusterreplicas

func WithNotesAdministrationProcessMoveMailUserDeleteoldclusterreplicas(deleteoldclusterreplicas Boolean) notesAdministrationProcessMoveMailUserParam

func WithNotesAdministrationProcessMoveMailUserNewclusterreplicaarray

func WithNotesAdministrationProcessMoveMailUserNewclusterreplicaarray(newclusterreplicaarray []String) notesAdministrationProcessMoveMailUserParam

func WithNotesAdministrationProcessMoveMailUserUsescos

func WithNotesAdministrationProcessMoveMailUserUsescos(usescos Boolean) notesAdministrationProcessMoveMailUserParam

func WithNotesAdministrationProcessMoveReplicaCopyacl

func WithNotesAdministrationProcessMoveReplicaCopyacl(copyacl Boolean) notesAdministrationProcessMoveReplicaParam

func WithNotesAdministrationProcessMoveReplicaCreateftindex

func WithNotesAdministrationProcessMoveReplicaCreateftindex(createftindex Boolean) notesAdministrationProcessMoveReplicaParam

func WithNotesAdministrationProcessMoveReplicaDestdbfile

func WithNotesAdministrationProcessMoveReplicaDestdbfile(destdbfile String) notesAdministrationProcessMoveReplicaParam

func WithNotesAdministrationProcessMoveUserInHierarchyCompleteAltcommonname

func WithNotesAdministrationProcessMoveUserInHierarchyCompleteAltcommonname(altcommonname String) notesAdministrationProcessMoveUserInHierarchyCompleteParam

func WithNotesAdministrationProcessMoveUserInHierarchyCompleteAltlanguage

func WithNotesAdministrationProcessMoveUserInHierarchyCompleteAltlanguage(altlanguage String) notesAdministrationProcessMoveUserInHierarchyCompleteParam

func WithNotesAdministrationProcessMoveUserInHierarchyCompleteAltorgunit

func WithNotesAdministrationProcessMoveUserInHierarchyCompleteAltorgunit(altorgunit String) notesAdministrationProcessMoveUserInHierarchyCompleteParam

func WithNotesAdministrationProcessMoveUserInHierarchyCompleteFirstname

func WithNotesAdministrationProcessMoveUserInHierarchyCompleteFirstname(firstname String) notesAdministrationProcessMoveUserInHierarchyCompleteParam

func WithNotesAdministrationProcessMoveUserInHierarchyCompleteLastname

func WithNotesAdministrationProcessMoveUserInHierarchyCompleteLastname(lastname String) notesAdministrationProcessMoveUserInHierarchyCompleteParam

func WithNotesAdministrationProcessMoveUserInHierarchyCompleteMiddleinitial

func WithNotesAdministrationProcessMoveUserInHierarchyCompleteMiddleinitial(middleinitial String) notesAdministrationProcessMoveUserInHierarchyCompleteParam

func WithNotesAdministrationProcessMoveUserInHierarchyCompleteOrgunit

func WithNotesAdministrationProcessMoveUserInHierarchyCompleteOrgunit(orgunit String) notesAdministrationProcessMoveUserInHierarchyCompleteParam

func WithNotesAdministrationProcessMoveUserInHierarchyCompleteRenamewindowsuser

func WithNotesAdministrationProcessMoveUserInHierarchyCompleteRenamewindowsuser(renamewindowsuser Boolean) notesAdministrationProcessMoveUserInHierarchyCompleteParam

func WithNotesAdministrationProcessMoveUserInHierarchyRequestAllowprimarynamechange

func WithNotesAdministrationProcessMoveUserInHierarchyRequestAllowprimarynamechange(allowprimarynamechange Boolean) notesAdministrationProcessMoveUserInHierarchyRequestParam

func WithNotesAdministrationProcessRenameNotesUserAltcommonname

func WithNotesAdministrationProcessRenameNotesUserAltcommonname(altcommonname String) notesAdministrationProcessRenameNotesUserParam

func WithNotesAdministrationProcessRenameNotesUserAltlanguage

func WithNotesAdministrationProcessRenameNotesUserAltlanguage(altlanguage String) notesAdministrationProcessRenameNotesUserParam

func WithNotesAdministrationProcessRenameNotesUserAltorgunit

func WithNotesAdministrationProcessRenameNotesUserAltorgunit(altorgunit String) notesAdministrationProcessRenameNotesUserParam

func WithNotesAdministrationProcessRenameNotesUserFirstname

func WithNotesAdministrationProcessRenameNotesUserFirstname(firstname String) notesAdministrationProcessRenameNotesUserParam

func WithNotesAdministrationProcessRenameNotesUserLastname

func WithNotesAdministrationProcessRenameNotesUserLastname(lastname String) notesAdministrationProcessRenameNotesUserParam

func WithNotesAdministrationProcessRenameNotesUserMiddleinitial

func WithNotesAdministrationProcessRenameNotesUserMiddleinitial(middleinitial String) notesAdministrationProcessRenameNotesUserParam

func WithNotesAdministrationProcessRenameNotesUserOrgunit

func WithNotesAdministrationProcessRenameNotesUserOrgunit(orgunit String) notesAdministrationProcessRenameNotesUserParam

func WithNotesAdministrationProcessRenameNotesUserRenamewindowsuser

func WithNotesAdministrationProcessRenameNotesUserRenamewindowsuser(renamewindowsuser Boolean) notesAdministrationProcessRenameNotesUserParam

func WithNotesAdministrationProcessRenameWebUserNewfirstname

func WithNotesAdministrationProcessRenameWebUserNewfirstname(newfirstname String) notesAdministrationProcessRenameWebUserParam

func WithNotesAdministrationProcessRenameWebUserNewinternetaddress

func WithNotesAdministrationProcessRenameWebUserNewinternetaddress(newinternetaddress String) notesAdministrationProcessRenameWebUserParam

func WithNotesAdministrationProcessRenameWebUserNewlastname

func WithNotesAdministrationProcessRenameWebUserNewlastname(newlastname String) notesAdministrationProcessRenameWebUserParam

func WithNotesAdministrationProcessRenameWebUserNewmiddleinitial

func WithNotesAdministrationProcessRenameWebUserNewmiddleinitial(newmiddleinitial String) notesAdministrationProcessRenameWebUserParam

func WithNotesAdministrationProcessRenameWebUserNewshortname

func WithNotesAdministrationProcessRenameWebUserNewshortname(newshortname String) notesAdministrationProcessRenameWebUserParam

func WithNotesAdministrationProcessSetUserPasswordSettingsInternetpasswordforcechange

func WithNotesAdministrationProcessSetUserPasswordSettingsInternetpasswordforcechange(internetpasswordforcechange Boolean) notesAdministrationProcessSetUserPasswordSettingsParam

func WithNotesAdministrationProcessSetUserPasswordSettingsNotespasswordchangeinterval

func WithNotesAdministrationProcessSetUserPasswordSettingsNotespasswordchangeinterval(notespasswordchangeinterval Integer) notesAdministrationProcessSetUserPasswordSettingsParam

func WithNotesAdministrationProcessSetUserPasswordSettingsNotespasswordchecksetting

func WithNotesAdministrationProcessSetUserPasswordSettingsNotespasswordchecksetting(notespasswordchecksetting Integer) notesAdministrationProcessSetUserPasswordSettingsParam

func WithNotesAdministrationProcessSetUserPasswordSettingsNotespasswordgraceperiod

func WithNotesAdministrationProcessSetUserPasswordSettingsNotespasswordgraceperiod(notespasswordgraceperiod Integer) notesAdministrationProcessSetUserPasswordSettingsParam

func WithNotesAdministrationProcessSignDatabaseWithServerIDUpdateonly

func WithNotesAdministrationProcessSignDatabaseWithServerIDUpdateonly(updateonly Boolean) notesAdministrationProcessSignDatabaseWithServerIDParam

func WithNotesAdministrationProcessUpgradeUserToHierarchicalAltcommonname

func WithNotesAdministrationProcessUpgradeUserToHierarchicalAltcommonname(altcommonname String) notesAdministrationProcessUpgradeUserToHierarchicalParam

func WithNotesAdministrationProcessUpgradeUserToHierarchicalAltlanguage

func WithNotesAdministrationProcessUpgradeUserToHierarchicalAltlanguage(altlanguage String) notesAdministrationProcessUpgradeUserToHierarchicalParam

func WithNotesAdministrationProcessUpgradeUserToHierarchicalAltorgunit

func WithNotesAdministrationProcessUpgradeUserToHierarchicalAltorgunit(altorgunit String) notesAdministrationProcessUpgradeUserToHierarchicalParam

func WithNotesAdministrationProcessUpgradeUserToHierarchicalOrgunit

func WithNotesAdministrationProcessUpgradeUserToHierarchicalOrgunit(orgunit String) notesAdministrationProcessUpgradeUserToHierarchicalParam

func WithNotesAgentLockName

func WithNotesAgentLockName(name []String) notesAgentLockParam

func WithNotesAgentLockProvisionalName

func WithNotesAgentLockProvisionalName(name []String) notesAgentLockProvisionalParam

func WithNotesAgentLockProvisionalOK

func WithNotesAgentLockProvisionalOK(provisionalOK Boolean) notesAgentLockParam

func WithNotesAgentRunNoteID

func WithNotesAgentRunNoteID(noteID String) notesAgentRunParam

func WithNotesAgentRunOnServerNoteID

func WithNotesAgentRunOnServerNoteID(noteID String) notesAgentRunOnServerParam

func WithNotesCalendarCreateEntryFlags

func WithNotesCalendarCreateEntryFlags(flags Integer) notesCalendarCreateEntryParam

func WithNotesCalendarEntryAddInviteesComments

func WithNotesCalendarEntryAddInviteesComments(comments String) notesCalendarEntryAddInviteesParam

func WithNotesCalendarEntryAddInviteesFlags

func WithNotesCalendarEntryAddInviteesFlags(flags Integer) notesCalendarEntryAddInviteesParam

func WithNotesCalendarEntryAddInviteesRecurId

func WithNotesCalendarEntryAddInviteesRecurId(recurId String) notesCalendarEntryAddInviteesParam

func WithNotesCalendarEntryAddInviteesScope

func WithNotesCalendarEntryAddInviteesScope(scope Integer) notesCalendarEntryAddInviteesParam

func WithNotesCalendarEntryCancelRecurId

func WithNotesCalendarEntryCancelRecurId(recurId String) notesCalendarEntryCancelParam

func WithNotesCalendarEntryCancelScope

func WithNotesCalendarEntryCancelScope(scope Integer) notesCalendarEntryCancelParam

func WithNotesCalendarEntryCounterKeepPlaceholder

func WithNotesCalendarEntryCounterKeepPlaceholder(keepPlaceholder Boolean) notesCalendarEntryCounterParam

func WithNotesCalendarEntryCounterRecurId

func WithNotesCalendarEntryCounterRecurId(recurId String) notesCalendarEntryCounterParam

func WithNotesCalendarEntryCounterScope

func WithNotesCalendarEntryCounterScope(scope Integer) notesCalendarEntryCounterParam

func WithNotesCalendarEntryDeclineKeepInformed

func WithNotesCalendarEntryDeclineKeepInformed(keepInformed Boolean) notesCalendarEntryDeclineParam

func WithNotesCalendarEntryDeclineRecurId

func WithNotesCalendarEntryDeclineRecurId(recurId String) notesCalendarEntryDeclineParam

func WithNotesCalendarEntryDeclineScope

func WithNotesCalendarEntryDeclineScope(scope Integer) notesCalendarEntryDeclineParam

func WithNotesCalendarEntryDelegateKeepInformed

func WithNotesCalendarEntryDelegateKeepInformed(keepInformed Boolean) notesCalendarEntryDelegateParam

func WithNotesCalendarEntryDelegateRecurId

func WithNotesCalendarEntryDelegateRecurId(recurId String) notesCalendarEntryDelegateParam

func WithNotesCalendarEntryDelegateScope

func WithNotesCalendarEntryDelegateScope(scope Integer) notesCalendarEntryDelegateParam

func WithNotesCalendarEntryGetAsDocumentFlags

func WithNotesCalendarEntryGetAsDocumentFlags(flags Integer) notesCalendarEntryGetAsDocumentParam

func WithNotesCalendarEntryGetAsDocumentRecurId

func WithNotesCalendarEntryGetAsDocumentRecurId(recurId String) notesCalendarEntryGetAsDocumentParam

func WithNotesCalendarEntryModifyInviteesComments

func WithNotesCalendarEntryModifyInviteesComments(comments String) notesCalendarEntryModifyInviteesParam

func WithNotesCalendarEntryModifyInviteesFlags

func WithNotesCalendarEntryModifyInviteesFlags(flags Integer) notesCalendarEntryModifyInviteesParam

func WithNotesCalendarEntryModifyInviteesRecurId

func WithNotesCalendarEntryModifyInviteesRecurId(recurId String) notesCalendarEntryModifyInviteesParam

func WithNotesCalendarEntryModifyInviteesScope

func WithNotesCalendarEntryModifyInviteesScope(scope Integer) notesCalendarEntryModifyInviteesParam

func WithNotesCalendarEntryReadRecurId

func WithNotesCalendarEntryReadRecurId(recurId String) notesCalendarEntryReadParam

func WithNotesCalendarEntryRemoveInviteesComments

func WithNotesCalendarEntryRemoveInviteesComments(comments String) notesCalendarEntryRemoveInviteesParam

func WithNotesCalendarEntryRemoveInviteesFlags

func WithNotesCalendarEntryRemoveInviteesFlags(flags Integer) notesCalendarEntryRemoveInviteesParam

func WithNotesCalendarEntryRemoveInviteesRecurId

func WithNotesCalendarEntryRemoveInviteesRecurId(recurId String) notesCalendarEntryRemoveInviteesParam

func WithNotesCalendarEntryRemoveInviteesScope

func WithNotesCalendarEntryRemoveInviteesScope(scope Integer) notesCalendarEntryRemoveInviteesParam

func WithNotesCalendarEntryRemoveRecurId

func WithNotesCalendarEntryRemoveRecurId(recurId String) notesCalendarEntryRemoveParam

func WithNotesCalendarEntryRemoveScope

func WithNotesCalendarEntryRemoveScope(scope Integer) notesCalendarEntryRemoveParam

func WithNotesCalendarEntryTentativelyAcceptRecurId

func WithNotesCalendarEntryTentativelyAcceptRecurId(recurId String) notesCalendarEntryTentativelyAcceptParam

func WithNotesCalendarEntryTentativelyAcceptScope

func WithNotesCalendarEntryTentativelyAcceptScope(scope Integer) notesCalendarEntryTentativelyAcceptParam

func WithNotesCalendarEntryUpdateComments

func WithNotesCalendarEntryUpdateComments(comments String) notesCalendarEntryUpdateParam

func WithNotesCalendarEntryUpdateFlags

func WithNotesCalendarEntryUpdateFlags(flags Integer) notesCalendarEntryUpdateParam

func WithNotesCalendarEntryUpdateRecurId

func WithNotesCalendarEntryUpdateRecurId(recurId String) notesCalendarEntryUpdateParam

func WithNotesCalendarGetEntriesMaxReturn

func WithNotesCalendarGetEntriesMaxReturn(maxReturn Long) notesCalendarGetEntriesParam

func WithNotesCalendarGetEntriesSkipCount

func WithNotesCalendarGetEntriesSkipCount(skipCount Long) notesCalendarGetEntriesParam

func WithNotesCalendarGetNewInvitationsSince

func WithNotesCalendarGetNewInvitationsSince(since NotesDateTime) notesCalendarGetNewInvitationsParam

func WithNotesCalendarGetNewInvitationsStart

func WithNotesCalendarGetNewInvitationsStart(start NotesDateTime) notesCalendarGetNewInvitationsParam

func WithNotesCalendarNoticeCounterEnd

func WithNotesCalendarNoticeCounterEnd(end NotesDateTime) notesCalendarNoticeCounterParam

func WithNotesCalendarNoticeCounterStart

func WithNotesCalendarNoticeCounterStart(start NotesDateTime) notesCalendarNoticeCounterParam

func WithNotesCalendarNoticeDeclineEnd

func WithNotesCalendarNoticeDeclineEnd(keepInformed Boolean) notesCalendarNoticeDeclineParam

func WithNotesCalendarNoticeDelegateEnd

func WithNotesCalendarNoticeDelegateEnd(keepInformed Boolean) notesCalendarNoticeDelegateParam

func WithNotesCalendarReadRangeMaxReturn

func WithNotesCalendarReadRangeMaxReturn(maxReturn Long) notesCalendarReadRangeParam

func WithNotesCalendarReadRangeSkipCount

func WithNotesCalendarReadRangeSkipCount(skipCount Long) notesCalendarReadRangeParam

func WithNotesDatabaseCompactWithOptionsSpaceThreshold

func WithNotesDatabaseCompactWithOptionsSpaceThreshold(spaceThreshold String) notesDatabaseCompactWithOptionsParam

func WithNotesDatabaseCreateCopyMaxsize

func WithNotesDatabaseCreateCopyMaxsize(maxsize Byte) notesDatabaseCreateCopyParam

func WithNotesDatabaseCreateFromTemplateMaxsize

func WithNotesDatabaseCreateFromTemplateMaxsize(maxsize Byte) notesDatabaseCreateFromTemplateParam

func WithNotesDatabaseCreateMaxsize

func WithNotesDatabaseCreateMaxsize(maxsize Byte) notesDatabaseCreateParam

func WithNotesDatabaseCreateOutlineDefaultOutline

func WithNotesDatabaseCreateOutlineDefaultOutline(defaultOutline Boolean) notesDatabaseCreateOutlineParam

func WithNotesDatabaseCreateViewProhibitDesignRefreshModifications

func WithNotesDatabaseCreateViewProhibitDesignRefreshModifications(prohibitDesignRefreshModifications Boolean) notesDatabaseCreateViewParam

func WithNotesDatabaseCreateViewTemplateView

func WithNotesDatabaseCreateViewTemplateView(templateView NotesView) notesDatabaseCreateViewParam

func WithNotesDatabaseCreateViewViewName

func WithNotesDatabaseCreateViewViewName(viewName String) notesDatabaseCreateViewParam

func WithNotesDatabaseCreateViewViewSelectionFormula

func WithNotesDatabaseCreateViewViewSelectionFormula(viewSelectionFormula String) notesDatabaseCreateViewParam

func WithNotesDatabaseFTDomainSearchCount

func WithNotesDatabaseFTDomainSearchCount(count Long) notesDatabaseFTDomainSearchParam

func WithNotesDatabaseFTDomainSearchOtheroptions

func WithNotesDatabaseFTDomainSearchOtheroptions(otheroptions Integer) notesDatabaseFTDomainSearchParam

func WithNotesDatabaseFTDomainSearchSortoptions

func WithNotesDatabaseFTDomainSearchSortoptions(sortoptions Integer) notesDatabaseFTDomainSearchParam

func WithNotesDatabaseFTDomainSearchStart

func WithNotesDatabaseFTDomainSearchStart(start Long) notesDatabaseFTDomainSearchParam

func WithNotesDatabaseFTSearchOtheroptions

func WithNotesDatabaseFTSearchOtheroptions(otheroptions Integer) notesDatabaseFTSearchParam

func WithNotesDatabaseFTSearchRangeOtheroptions

func WithNotesDatabaseFTSearchRangeOtheroptions(otheroptions Integer) notesDatabaseFTSearchRangeParam

func WithNotesDatabaseFTSearchRangeSortoptions

func WithNotesDatabaseFTSearchRangeSortoptions(sortoptions Integer) notesDatabaseFTSearchRangeParam

func WithNotesDatabaseFTSearchRangeStart

func WithNotesDatabaseFTSearchRangeStart(start Long) notesDatabaseFTSearchRangeParam

func WithNotesDatabaseFTSearchSortoptions

func WithNotesDatabaseFTSearchSortoptions(sortoptions Integer) notesDatabaseFTSearchParam

func WithNotesDatabaseFixupOptions

func WithNotesDatabaseFixupOptions(options Long) notesDatabaseFixupParam

func WithNotesDatabaseGetAllReadDocumentsUsername

func WithNotesDatabaseGetAllReadDocumentsUsername(username String) notesDatabaseGetAllReadDocumentsParam

func WithNotesDatabaseGetAllUnreadDocumentsUsername

func WithNotesDatabaseGetAllUnreadDocumentsUsername(username String) notesDatabaseGetAllUnreadDocumentsParam

func WithNotesDatabaseGetDocumentByURLCharset

func WithNotesDatabaseGetDocumentByURLCharset(charset String) notesDatabaseGetDocumentByURLParam

func WithNotesDatabaseGetDocumentByURLProxywebpassword

func WithNotesDatabaseGetDocumentByURLProxywebpassword(proxywebpassword String) notesDatabaseGetDocumentByURLParam

func WithNotesDatabaseGetDocumentByURLProxywebusername

func WithNotesDatabaseGetDocumentByURLProxywebusername(proxywebusername String) notesDatabaseGetDocumentByURLParam

func WithNotesDatabaseGetDocumentByURLReload

func WithNotesDatabaseGetDocumentByURLReload(reload Integer) notesDatabaseGetDocumentByURLParam

func WithNotesDatabaseGetDocumentByURLReturnimmediately

func WithNotesDatabaseGetDocumentByURLReturnimmediately(returnimmediately Boolean) notesDatabaseGetDocumentByURLParam

func WithNotesDatabaseGetDocumentByURLUrllist

func WithNotesDatabaseGetDocumentByURLUrllist(urllist Integer) notesDatabaseGetDocumentByURLParam

func WithNotesDatabaseGetDocumentByURLWebpassword

func WithNotesDatabaseGetDocumentByURLWebpassword(webpassword String) notesDatabaseGetDocumentByURLParam

func WithNotesDatabaseGetDocumentByURLWebusername

func WithNotesDatabaseGetDocumentByURLWebusername(webusername String) notesDatabaseGetDocumentByURLParam

func WithNotesDatabaseGetModifiedDocumentsNoteClass

func WithNotesDatabaseGetModifiedDocumentsNoteClass(noteClass Integer) notesDatabaseGetModifiedDocumentsParam

func WithNotesDatabaseGetModifiedDocumentsSince

func WithNotesDatabaseGetModifiedDocumentsSince(since NotesDateTime) notesDatabaseGetModifiedDocumentsParam

func WithNotesDatabaseGetNamedDocCollectionName

func WithNotesDatabaseGetNamedDocCollectionName(name String) notesDatabaseGetNamedDocCollectionParam

func WithNotesDatabaseGetProfileDocCollectionProfilename

func WithNotesDatabaseGetProfileDocCollectionProfilename(profilename String) notesDatabaseGetProfileDocCollectionParam

func WithNotesDatabaseGetProfileDocumentUniqueKey

func WithNotesDatabaseGetProfileDocumentUniqueKey(uniqueKey String) notesDatabaseGetProfileDocumentParam

func WithNotesDatabaseGetURLHeaderInfoHeadername

func WithNotesDatabaseGetURLHeaderInfoHeadername(headername Integer) notesDatabaseGetURLHeaderInfoParam

func WithNotesDatabaseGetURLHeaderInfoProxywebpassword

func WithNotesDatabaseGetURLHeaderInfoProxywebpassword(Proxywebpassword String) notesDatabaseGetURLHeaderInfoParam

func WithNotesDatabaseGetURLHeaderInfoProxywebusername

func WithNotesDatabaseGetURLHeaderInfoProxywebusername(Proxywebusername String) notesDatabaseGetURLHeaderInfoParam

func WithNotesDatabaseGetURLHeaderInfoURL

func WithNotesDatabaseGetURLHeaderInfoURL(URL String) notesDatabaseGetURLHeaderInfoParam

func WithNotesDatabaseGetURLHeaderInfoWebpassword

func WithNotesDatabaseGetURLHeaderInfoWebpassword(Webpassword String) notesDatabaseGetURLHeaderInfoParam

func WithNotesDatabaseGetURLHeaderInfoWebusername

func WithNotesDatabaseGetURLHeaderInfoWebusername(Webusername String) notesDatabaseGetURLHeaderInfoParam

func WithNotesDatabaseSignDocumentType

func WithNotesDatabaseSignDocumentType(documentType Integer) notesDatabaseSignParam

func WithNotesDatabaseSignExistingSigsOnly

func WithNotesDatabaseSignExistingSigsOnly(existingSigsOnly Boolean) notesDatabaseSignParam

func WithNotesDatabaseSignNameStr

func WithNotesDatabaseSignNameStr(nameStr String) notesDatabaseSignParam

func WithNotesDatabaseSignNameStrIsNoteID

func WithNotesDatabaseSignNameStrIsNoteID(nameStrIsNoteID Boolean) notesDatabaseSignParam

func WithNotesDatabaseUnprocessedFTSearchOtheroptions

func WithNotesDatabaseUnprocessedFTSearchOtheroptions(otheroptions Integer) notesDatabaseUnprocessedFTSearchParam

func WithNotesDatabaseUnprocessedFTSearchRangeOtheroptions

func WithNotesDatabaseUnprocessedFTSearchRangeOtheroptions(otheroptions Integer) notesDatabaseUnprocessedFTSearchRangeParam

func WithNotesDatabaseUnprocessedFTSearchRangeSortoptions

func WithNotesDatabaseUnprocessedFTSearchRangeSortoptions(sortoptions Integer) notesDatabaseUnprocessedFTSearchRangeParam

func WithNotesDatabaseUnprocessedFTSearchRangeStart

func WithNotesDatabaseUnprocessedFTSearchRangeStart(start Long) notesDatabaseUnprocessedFTSearchRangeParam

func WithNotesDatabaseUnprocessedFTSearchSortoptions

func WithNotesDatabaseUnprocessedFTSearchSortoptions(sortoptions Integer) notesDatabaseUnprocessedFTSearchParam

func WithNotesDateTimeAdjustDayPreserveLocalTime

func WithNotesDateTimeAdjustDayPreserveLocalTime(preserveLocalTime Boolean) notesDateTimeAdjustDayParam

func WithNotesDateTimeAdjustHourPreserveLocalTime

func WithNotesDateTimeAdjustHourPreserveLocalTime(preserveLocalTime Boolean) notesDateTimeAdjustHourParam

func WithNotesDateTimeAdjustMinutePreserveLocalTime

func WithNotesDateTimeAdjustMinutePreserveLocalTime(preserveLocalTime Boolean) notesDateTimeAdjustMinuteParam

func WithNotesDateTimeAdjustMonthPreserveLocalTime

func WithNotesDateTimeAdjustMonthPreserveLocalTime(preserveLocalTime Boolean) notesDateTimeAdjustMonthParam

func WithNotesDateTimeAdjustSecondPreserveLocalTime

func WithNotesDateTimeAdjustSecondPreserveLocalTime(preserveLocalTime Boolean) notesDateTimeAdjustSecondParam

func WithNotesDateTimeAdjustYearPreserveLocalTime

func WithNotesDateTimeAdjustYearPreserveLocalTime(preserveLocalTime Boolean) notesDateTimeAdjustYearParam

func WithNotesDbDirectoryCreateDatabaseOpen

func WithNotesDbDirectoryCreateDatabaseOpen(open Boolean) notesDbDirectoryCreateDatabaseParam

func WithNotesDbDirectoryOpenDatabaseOpen

func WithNotesDbDirectoryOpenDatabaseOpen(open Boolean) notesDbDirectoryOpenDatabaseParam

func WithNotesDirectoryGetMailInfoErrorOnMultipleMatches

func WithNotesDirectoryGetMailInfoErrorOnMultipleMatches(errorOnMultipleMatches Boolean) notesDirectoryGetMailInfoParam

func WithNotesDirectoryGetMailInfoGetver

func WithNotesDirectoryGetMailInfoGetver(getver Boolean) notesDirectoryGetMailInfoParam

func WithNotesDirectoryLookupNamesPartialmatches

func WithNotesDirectoryLookupNamesPartialmatches(partialmatches Boolean) notesDirectoryLookupNamesParam

func WithNotesDocumentCloseMIMEEntitiesEntityitemname

func WithNotesDocumentCloseMIMEEntitiesEntityitemname(entityitemname String) notesDocumentCloseMIMEEntitiesParam

func WithNotesDocumentCloseMIMEEntitiesSavechanges

func WithNotesDocumentCloseMIMEEntitiesSavechanges(savechanges Boolean) notesDocumentCloseMIMEEntitiesParam

func WithNotesDocumentCollectionAddDocumentCheckDups

func WithNotesDocumentCollectionAddDocumentCheckDups(checkDups Boolean) notesDocumentCollectionAddDocumentParam

func WithNotesDocumentCollectionMarkAllReadUsername

func WithNotesDocumentCollectionMarkAllReadUsername(username String) notesDocumentCollectionMarkAllReadParam

func WithNotesDocumentCollectionMarkAllUnreadUsername

func WithNotesDocumentCollectionMarkAllUnreadUsername(username String) notesDocumentCollectionMarkAllUnreadParam

func WithNotesDocumentCollectionPutAllInFolderCreateonfail

func WithNotesDocumentCollectionPutAllInFolderCreateonfail(createonfail Boolean) notesDocumentCollectionPutAllInFolderParam

func WithNotesDocumentConvertToMIMEConversionType

func WithNotesDocumentConvertToMIMEConversionType(conversionType Integer) notesDocumentConvertToMIMEParam

func WithNotesDocumentConvertToMIMEOptions

func WithNotesDocumentConvertToMIMEOptions(options Long) notesDocumentConvertToMIMEParam

func WithNotesDocumentCopyAllItemsReplace

func WithNotesDocumentCopyAllItemsReplace(replace Boolean) notesDocumentCopyAllItemsParam

func WithNotesDocumentCreateMIMEEntityItemName

func WithNotesDocumentCreateMIMEEntityItemName(itemName String) notesDocumentCreateMIMEEntityParam

func WithNotesDocumentGetMIMEEntityItemName

func WithNotesDocumentGetMIMEEntityItemName(itemName String) notesDocumentGetMIMEEntityParam

func WithNotesDocumentGetReadUsername

func WithNotesDocumentGetReadUsername(username String) notesDocumentGetReadParam

func WithNotesDocumentLockName

func WithNotesDocumentLockName(name []String) notesDocumentLockParam

func WithNotesDocumentLockProvisionalName

func WithNotesDocumentLockProvisionalName(name []String) notesDocumentLockProvisionalParam

func WithNotesDocumentLockProvisionalOK

func WithNotesDocumentLockProvisionalOK(provisionalOK Boolean) notesDocumentLockParam

func WithNotesDocumentMarkReadUsername

func WithNotesDocumentMarkReadUsername(username String) notesDocumentMarkReadParam

func WithNotesDocumentMarkUnreadUsername

func WithNotesDocumentMarkUnreadUsername(username String) notesDocumentMarkUnreadParam

func WithNotesDocumentPutInFolderCreateonfail

func WithNotesDocumentPutInFolderCreateonfail(createonfail Boolean) notesDocumentPutInFolderParam

func WithNotesDocumentSaveMarkRead

func WithNotesDocumentSaveMarkRead(markRead Boolean) notesDocumentSaveParam

func WithNotesDocumentSendRecipients

func WithNotesDocumentSendRecipients(recipients []String) notesDocumentSendParam

func WithNotesDominoQueryCreateIndexIsVisible

func WithNotesDominoQueryCreateIndexIsVisible(isVisible Boolean) notesDominoQueryCreateIndexParam

func WithNotesDominoQueryCreateIndexNoBuild

func WithNotesDominoQueryCreateIndexNoBuild(noBuild Boolean) notesDominoQueryCreateIndexParam

func WithNotesDominoQueryExecuteExpireHours

func WithNotesDominoQueryExecuteExpireHours(expireHours Long) notesDominoQueryExecuteParam

func WithNotesDominoQueryExecuteReplace

func WithNotesDominoQueryExecuteReplace(replace Boolean) notesDominoQueryExecuteParam

func WithNotesDominoQueryExecuteResultName

func WithNotesDominoQueryExecuteResultName(resultName String) notesDominoQueryExecuteParam

func WithNotesFormLockName

func WithNotesFormLockName(name []String) notesFormLockParam

func WithNotesFormLockProvisionalName

func WithNotesFormLockProvisionalName(name []String) notesFormLockProvisionalParam

func WithNotesFormLockProvisionalOK

func WithNotesFormLockProvisionalOK(provisionalOK Boolean) notesFormLockParam

func WithNotesMIMEEntityCreateChildEntityNextSibling

func WithNotesMIMEEntityCreateChildEntityNextSibling(nextSibling NotesMIMEEntity) notesMIMEEntityCreateChildEntityParam

func WithNotesMIMEEntityGetContentAsBytesDecoded

func WithNotesMIMEEntityGetContentAsBytesDecoded(decoded Boolean) notesMIMEEntityGetContentAsBytesParam

func WithNotesMIMEEntityGetContentAsTextDecoded

func WithNotesMIMEEntityGetContentAsTextDecoded(decoded Boolean) notesMIMEEntityGetContentAsTextParam

func WithNotesMIMEEntityGetEntityAsTextHeaderFilters

func WithNotesMIMEEntityGetEntityAsTextHeaderFilters(headerFilters []String) notesMIMEEntityGetEntityAsTextParam

func WithNotesMIMEEntityGetEntityAsTextInclusive

func WithNotesMIMEEntityGetEntityAsTextInclusive(inclusive Boolean) notesMIMEEntityGetEntityAsTextParam

func WithNotesMIMEEntityGetNextEntitySearch

func WithNotesMIMEEntityGetNextEntitySearch(search Integer) notesMIMEEntityGetNextEntityParam

func WithNotesMIMEEntityGetNthHeaderInstance

func WithNotesMIMEEntityGetNthHeaderInstance(instance Integer) notesMIMEEntityGetNthHeaderParam

func WithNotesMIMEEntityGetPrevEntitySearch

func WithNotesMIMEEntityGetPrevEntitySearch(search Integer) notesMIMEEntityGetPrevEntityParam

func WithNotesMIMEEntityGetSomeHeadersHeaderFilters

func WithNotesMIMEEntityGetSomeHeadersHeaderFilters(headerFilters []String) notesMIMEEntityGetSomeHeadersParam

func WithNotesMIMEEntityGetSomeHeadersInclusive

func WithNotesMIMEEntityGetSomeHeadersInclusive(inclusive Boolean) notesMIMEEntityGetSomeHeadersParam

func WithNotesMIMEHeaderAddValTextCharSet

func WithNotesMIMEHeaderAddValTextCharSet(charSet String) notesMIMEHeaderAddValTextParam

func WithNotesMIMEHeaderGetHeaderValAndParamsDecoded

func WithNotesMIMEHeaderGetHeaderValAndParamsDecoded(decoded Boolean) notesMIMEHeaderGetHeaderValAndParamsParam

func WithNotesMIMEHeaderGetHeaderValAndParamsFolded

func WithNotesMIMEHeaderGetHeaderValAndParamsFolded(folded Boolean) notesMIMEHeaderGetHeaderValAndParamsParam

func WithNotesMIMEHeaderGetHeaderValDecoded

func WithNotesMIMEHeaderGetHeaderValDecoded(decoded Boolean) notesMIMEHeaderGetHeaderValParam

func WithNotesMIMEHeaderGetHeaderValFolded

func WithNotesMIMEHeaderGetHeaderValFolded(folded Boolean) notesMIMEHeaderGetHeaderValParam

func WithNotesMIMEHeaderGetParamValFolded

func WithNotesMIMEHeaderGetParamValFolded(folded Boolean) notesMIMEHeaderGetParamValParam

func WithNotesOutlineAddEntryAsChild

func WithNotesOutlineAddEntryAsChild(AsChild Boolean) notesOutlineAddEntryParam

func WithNotesOutlineAddEntryMoveAfter

func WithNotesOutlineAddEntryMoveAfter(moveAfter Boolean) notesOutlineAddEntryParam

func WithNotesOutlineAddEntryRefEntry

func WithNotesOutlineAddEntryRefEntry(refEntry NotesOutlineEntry) notesOutlineAddEntryParam

func WithNotesOutlineCreateEntryAddAfter

func WithNotesOutlineCreateEntryAddAfter(addAfter Boolean) notesOutlineCreateEntryParam

func WithNotesOutlineCreateEntryAsChild

func WithNotesOutlineCreateEntryAsChild(asChild Boolean) notesOutlineCreateEntryParam

func WithNotesOutlineCreateEntryFromAddAfter

func WithNotesOutlineCreateEntryFromAddAfter(addAfter Boolean) notesOutlineCreateEntryFromParam

func WithNotesOutlineCreateEntryFromAsChild

func WithNotesOutlineCreateEntryFromAsChild(asChild Boolean) notesOutlineCreateEntryFromParam

func WithNotesOutlineCreateEntryFromRefentry

func WithNotesOutlineCreateEntryFromRefentry(refentry NotesOutlineEntry) notesOutlineCreateEntryFromParam

func WithNotesOutlineCreateEntryRefentry

func WithNotesOutlineCreateEntryRefentry(refentry NotesOutlineEntry) notesOutlineCreateEntryParam

func WithNotesOutlineMoveEntryAsChild

func WithNotesOutlineMoveEntryAsChild(AsChild Boolean) notesOutlineMoveEntryParam

func WithNotesOutlineMoveEntryMoveAfter

func WithNotesOutlineMoveEntryMoveAfter(moveAfter Boolean) notesOutlineMoveEntryParam

func WithNotesQueryResultsProcessorAddColumnCategorized

func WithNotesQueryResultsProcessorAddColumnCategorized(categorized Boolean) notesQueryResultsProcessorAddColumnParam

func WithNotesQueryResultsProcessorAddColumnFormula

func WithNotesQueryResultsProcessorAddColumnFormula(formula String) notesQueryResultsProcessorAddColumnParam

func WithNotesQueryResultsProcessorAddColumnHidden

func WithNotesQueryResultsProcessorAddColumnHidden(hidden Boolean) notesQueryResultsProcessorAddColumnParam

func WithNotesQueryResultsProcessorAddColumnSortOrder

func WithNotesQueryResultsProcessorAddColumnSortOrder(sortOrder Integer) notesQueryResultsProcessorAddColumnParam

func WithNotesQueryResultsProcessorAddColumnTitle

func WithNotesQueryResultsProcessorAddColumnTitle(title String) notesQueryResultsProcessorAddColumnParam

func WithNotesQueryResultsProcessorExecuteToViewDesignSrcDB

func WithNotesQueryResultsProcessorExecuteToViewDesignSrcDB(designSrcDB NotesDatabase) notesQueryResultsProcessorExecuteToViewParam

func WithNotesQueryResultsProcessorExecuteToViewDesignSrcViewName

func WithNotesQueryResultsProcessorExecuteToViewDesignSrcViewName(designSrcViewName String) notesQueryResultsProcessorExecuteToViewParam

func WithNotesQueryResultsProcessorExecuteToViewExpireHours

func WithNotesQueryResultsProcessorExecuteToViewExpireHours(expireHours Long) notesQueryResultsProcessorExecuteToViewParam

func WithNotesQueryResultsProcessorExecuteToViewReaders

func WithNotesQueryResultsProcessorExecuteToViewReaders(readers []String) notesQueryResultsProcessorExecuteToViewParam

func WithNotesRegistrationRegisterNewUserAltName

func WithNotesRegistrationRegisterNewUserAltName(altName String) notesRegistrationRegisterNewUserParam

func WithNotesRegistrationRegisterNewUserAltNameLang

func WithNotesRegistrationRegisterNewUserAltNameLang(altNameLang String) notesRegistrationRegisterNewUserParam

func WithNotesRegistrationRegisterNewUserCertPw

func WithNotesRegistrationRegisterNewUserCertPw(certPw String) notesRegistrationRegisterNewUserParam

func WithNotesRegistrationRegisterNewUserComment

func WithNotesRegistrationRegisterNewUserComment(comment String) notesRegistrationRegisterNewUserParam

func WithNotesRegistrationRegisterNewUserFirstName

func WithNotesRegistrationRegisterNewUserFirstName(firstName String) notesRegistrationRegisterNewUserParam

func WithNotesRegistrationRegisterNewUserFwdDomain

func WithNotesRegistrationRegisterNewUserFwdDomain(fwdDomain String) notesRegistrationRegisterNewUserParam

func WithNotesRegistrationRegisterNewUserLocation

func WithNotesRegistrationRegisterNewUserLocation(location String) notesRegistrationRegisterNewUserParam

func WithNotesRegistrationRegisterNewUserMailDbPath

func WithNotesRegistrationRegisterNewUserMailDbPath(mailDbPath String) notesRegistrationRegisterNewUserParam

func WithNotesRegistrationRegisterNewUserMiddle

func WithNotesRegistrationRegisterNewUserMiddle(middle String) notesRegistrationRegisterNewUserParam

func WithNotesRegistrationRegisterNewUserUserPw

func WithNotesRegistrationRegisterNewUserUserPw(userPw String) notesRegistrationRegisterNewUserParam

func WithNotesRegistrationRegisterNewUserUserType

func WithNotesRegistrationRegisterNewUserUserType(usertype Integer) notesRegistrationRegisterNewUserParam

func WithNotesReplicationGetEntryCreateflag

func WithNotesReplicationGetEntryCreateflag(createflag Boolean) notesReplicationGetEntryParam

func WithNotesRichTextItemAddNewLineForceParagraph

func WithNotesRichTextItemAddNewLineForceParagraph(forceParagraph Boolean) notesRichTextItemAddNewLineParam

func WithNotesRichTextItemAddNewLineN

func WithNotesRichTextItemAddNewLineN(n Integer) notesRichTextItemAddNewLineParam

func WithNotesRichTextItemAddPageBreakNotesRichTextParagraphStyle

func WithNotesRichTextItemAddPageBreakNotesRichTextParagraphStyle(notesRichTextParagraphStyle NotesRichTextParagraphStyle) notesRichTextItemAddPageBreakParam

func WithNotesRichTextItemAddTabN

func WithNotesRichTextItemAddTabN(n Integer) notesRichTextItemAddTabParam

func WithNotesRichTextItemAppendDocLinkHotSpotText

func WithNotesRichTextItemAppendDocLinkHotSpotText(HotSpotText String) notesRichTextItemAppendDocLinkParam

func WithNotesRichTextItemAppendTableLabels

func WithNotesRichTextItemAppendTableLabels(labels []String) notesRichTextItemAppendTableParam

func WithNotesRichTextItemAppendTableLeftMargin

func WithNotesRichTextItemAppendTableLeftMargin(leftMargin Long) notesRichTextItemAppendTableParam

func WithNotesRichTextItemAppendTableRtpsStyleArray

func WithNotesRichTextItemAppendTableRtpsStyleArray(rtpsStyleArray []NotesRichTextParagraphStyle) notesRichTextItemAppendTableParam

func WithNotesRichTextItemBeginInsertAfter

func WithNotesRichTextItemBeginInsertAfter(after Boolean) notesRichTextItemBeginInsertParam

func WithNotesRichTextItemBeginSectionBarColor

func WithNotesRichTextItemBeginSectionBarColor(barColor NotesColorObject) notesRichTextItemBeginSectionParam

func WithNotesRichTextItemBeginSectionExpand

func WithNotesRichTextItemBeginSectionExpand(expand Boolean) notesRichTextItemBeginSectionParam

func WithNotesRichTextItemBeginSectionTitleStyle

func WithNotesRichTextItemBeginSectionTitleStyle(titleStyle NotesRichTextStyle) notesRichTextItemBeginSectionParam

func WithNotesRichTextItemEmbedObjectName

func WithNotesRichTextItemEmbedObjectName(name String) notesRichTextItemEmbedObjectParam

func WithNotesRichTextNavigatorFindFirstStringOptions

func WithNotesRichTextNavigatorFindFirstStringOptions(options Long) notesRichTextNavigatorFindFirstStringParam

func WithNotesRichTextNavigatorFindNextElementOccurrence

func WithNotesRichTextNavigatorFindNextElementOccurrence(occurrence Long) notesRichTextNavigatorFindNextElementParam

func WithNotesRichTextNavigatorFindNextElementType

func WithNotesRichTextNavigatorFindNextElementType(elementType NotesRichTextNavigatorRtElementType) notesRichTextNavigatorFindNextElementParam

func WithNotesRichTextNavigatorFindNextStringOptions

func WithNotesRichTextNavigatorFindNextStringOptions(options Long) notesRichTextNavigatorFindNextStringParam

func WithNotesRichTextNavigatorFindNthElementOccurrence

func WithNotesRichTextNavigatorFindNthElementOccurrence(occurrence Long) notesRichTextNavigatorFindNthElementParam

func WithNotesRichTextParagraphStyleSetTabType

func WithNotesRichTextParagraphStyleSetTabType(tabType NotesRichTextTabType) notesRichTextParagraphStyleSetTabParam

func WithNotesRichTextParagraphStyleSetTabsInterval

func WithNotesRichTextParagraphStyleSetTabsInterval(interval Integer) notesRichTextParagraphStyleSetTabsParam

func WithNotesRichTextParagraphStyleSetTabsType

func WithNotesRichTextParagraphStyleSetTabsType(tabType NotesRichTextTabType) notesRichTextParagraphStyleSetTabsParam

func WithNotesRichTextRangeFindAndReplaceOptions

func WithNotesRichTextRangeFindAndReplaceOptions(options Long) notesRichTextRangeFindAndReplaceParam

func WithNotesRichTextRangeResetBegin

func WithNotesRichTextRangeResetBegin(begin Boolean) notesRichTextRangeResetParam

func WithNotesRichTextRangeResetEnd

func WithNotesRichTextRangeResetEnd(end Boolean) notesRichTextRangeResetParam

func WithNotesSessionCreateNameLanguage

func WithNotesSessionCreateNameLanguage(language String) notesSessionCreateNameParam

func WithNotesSessionFreeResourceSearchApptunid

func WithNotesSessionFreeResourceSearchApptunid(Apptunid String) notesSessionFreeResourceSearchParam

func WithNotesSessionFreeResourceSearchMaxresults

func WithNotesSessionFreeResourceSearchMaxresults(Maxresults Integer) notesSessionFreeResourceSearchParam

func WithNotesSessionFreeResourceSearchMincapacity

func WithNotesSessionFreeResourceSearchMincapacity(Mincapacity Integer) notesSessionFreeResourceSearchParam

func WithNotesSessionFreeResourceSearchOutputversion

func WithNotesSessionFreeResourceSearchOutputversion(Outputversion Integer) notesSessionFreeResourceSearchParam

func WithNotesSessionFreeResourceSearchServer

func WithNotesSessionFreeResourceSearchServer(Server String) notesSessionFreeResourceSearchParam

func WithNotesSessionFreeResourceSearchUser

func WithNotesSessionFreeResourceSearchUser(User String) notesSessionFreeResourceSearchParam

func WithNotesSessionFreeTimeSearchFirstfit

func WithNotesSessionFreeTimeSearchFirstfit(firstfit Boolean) notesSessionFreeTimeSearchParam

func WithNotesSessionGetDatabaseCreateonfail

func WithNotesSessionGetDatabaseCreateonfail(createonfail Boolean) notesSessionGetDatabaseParam

func WithNotesSessionGetDirectoryServerName

func WithNotesSessionGetDirectoryServerName(serverName String) notesSessionGetDirectoryParam

func WithNotesSessionGetEnvironmentStringSystem

func WithNotesSessionGetEnvironmentStringSystem(system Boolean) notesSessionGetEnvironmentStringParam

func WithNotesSessionGetEnvironmentValueSystem

func WithNotesSessionGetEnvironmentValueSystem(system Boolean) notesSessionGetEnvironmentValueParam

func WithNotesSessionGetUserPolicySettingsExplicitPolicy

func WithNotesSessionGetUserPolicySettingsExplicitPolicy(explicitPolicy String) notesSessionGetUserPolicySettingsParam

func WithNotesSessionGetUserPolicySettingsReserved

func WithNotesSessionGetUserPolicySettingsReserved(reserved String) notesSessionGetUserPolicySettingsParam

func WithNotesSessionInitializePassword

func WithNotesSessionInitializePassword(password String) notesSessionInitializeParam

func WithNotesSessionInitializeUsingNotesUserNamePassword

func WithNotesSessionInitializeUsingNotesUserNamePassword(password String) notesSessionInitializeUsingNotesUserNameParam

func WithNotesSessionResetUserPasswordDownloadcount

func WithNotesSessionResetUserPasswordDownloadcount(downloadcount Integer) notesSessionResetUserPasswordParam

func WithNotesSessionSetEnvironmentVarIssystemvar

func WithNotesSessionSetEnvironmentVarIssystemvar(issystemvar Boolean) notesSessionSetEnvironmentVarParam

func WithNotesStreamOpenCharset

func WithNotesStreamOpenCharset(charset String) notesStreamOpenParam

func WithNotesStreamReadLength

func WithNotesStreamReadLength(length Long) notesStreamReadParam

func WithNotesStreamReadTextEol

func WithNotesStreamReadTextEol(eol Long) notesStreamReadTextParam

func WithNotesStreamReadTextOneLine

func WithNotesStreamReadTextOneLine(oneLine Long) notesStreamReadTextParam

func WithNotesStreamWriteTextEol

func WithNotesStreamWriteTextEol(eol Long) notesStreamWriteTextParam

func WithNotesViewCopyColumnDestinationIndex

func WithNotesViewCopyColumnDestinationIndex(destinationIndex Long) notesViewCopyColumnParam

func WithNotesViewCreateColumnColumnName

func WithNotesViewCreateColumnColumnName(columnName String) notesViewCreateColumnParam

func WithNotesViewCreateColumnFormula

func WithNotesViewCreateColumnFormula(formula String) notesViewCreateColumnParam

func WithNotesViewCreateColumnPosition

func WithNotesViewCreateColumnPosition(position Long) notesViewCreateColumnParam

func WithNotesViewCreateViewNavCacheSize

func WithNotesViewCreateViewNavCacheSize(cacheSize Long) notesViewCreateViewNavParam

func WithNotesViewCreateViewNavFromAllUnreadUsername

func WithNotesViewCreateViewNavFromAllUnreadUsername(username String) notesViewCreateViewNavFromAllUnreadParam

func WithNotesViewCreateViewNavFromCacheSize

func WithNotesViewCreateViewNavFromCacheSize(cacheSize Long) notesViewCreateViewNavFromParam

func WithNotesViewCreateViewNavFromCategoryCacheSize

func WithNotesViewCreateViewNavFromCategoryCacheSize(cacheSize Long) notesViewCreateViewNavFromCategoryParam

func WithNotesViewCreateViewNavFromChildrenCacheSize

func WithNotesViewCreateViewNavFromChildrenCacheSize(cacheSize Long) notesViewCreateViewNavFromChildrenParam

func WithNotesViewCreateViewNavFromDescendantsCacheSize

func WithNotesViewCreateViewNavFromDescendantsCacheSize(cacheSize Long) notesViewCreateViewNavFromDescendantsParam

func WithNotesViewCreateViewNavMaxLevelCacheSize

func WithNotesViewCreateViewNavMaxLevelCacheSize(cacheSize Long) notesViewCreateViewNavMaxLevelParam

func WithNotesViewEntryCollectionAddEntryCheckDups

func WithNotesViewEntryCollectionAddEntryCheckDups(checkDups Boolean) notesViewEntryCollectionAddEntryParam

func WithNotesViewEntryCollectionIntersectMaintainOrder

func WithNotesViewEntryCollectionIntersectMaintainOrder(maintainOrder Boolean) notesViewEntryCollectionIntersectParam

func WithNotesViewEntryCollectionMarkAllReadUsername

func WithNotesViewEntryCollectionMarkAllReadUsername(username String) notesViewEntryCollectionMarkAllReadParam

func WithNotesViewEntryCollectionMarkAllUnreadUsername

func WithNotesViewEntryCollectionMarkAllUnreadUsername(username String) notesViewEntryCollectionMarkAllUnreadParam

func WithNotesViewEntryCollectionPutAllInFolderCreateonfail

func WithNotesViewEntryCollectionPutAllInFolderCreateonfail(createonfail Boolean) notesViewEntryCollectionPutAllInFolderParam

func WithNotesViewEntryCollectionSubtractMaintainOrder

func WithNotesViewEntryCollectionSubtractMaintainOrder(maintainOrder Boolean) notesViewEntryCollectionSubtractParam

func WithNotesViewEntryGetReadUsername

func WithNotesViewEntryGetReadUsername(username String) notesViewEntryGetReadParam

func WithNotesViewGetAllDocumentsByKeyExactMatch

func WithNotesViewGetAllDocumentsByKeyExactMatch(exactMatch Boolean) notesViewGetAllDocumentsByKeyParam

func WithNotesViewGetAllEntriesByKeyExactMatch

func WithNotesViewGetAllEntriesByKeyExactMatch(exactMatch Boolean) notesViewGetAllEntriesByKeyParam

func WithNotesViewGetAllReadEntriesUsername

func WithNotesViewGetAllReadEntriesUsername(username String) notesViewGetAllReadEntriesParam

func WithNotesViewGetAllUnreadEntriesUsername

func WithNotesViewGetAllUnreadEntriesUsername(username String) notesViewGetAllUnreadEntriesParam

func WithNotesViewGetDocumentByKeyExactMatch

func WithNotesViewGetDocumentByKeyExactMatch(exactMatch Boolean) notesViewGetDocumentByKeyParam

func WithNotesViewGetEntryByKeyExactMatch

func WithNotesViewGetEntryByKeyExactMatch(exactMatch Boolean) notesViewGetEntryByKeyParam

func WithNotesViewLockName

func WithNotesViewLockName(name []String) notesViewLockParam

func WithNotesViewLockProvisionalName

func WithNotesViewLockProvisionalName(name []String) notesViewLockProvisionalParam

func WithNotesViewLockProvisionalOK

func WithNotesViewLockProvisionalOK(provisionalOK Boolean) notesViewLockParam

func WithNotesViewMarkAllReadUsername

func WithNotesViewMarkAllReadUsername(username String) notesViewMarkAllReadParam

func WithNotesViewMarkAllUnreadUsername

func WithNotesViewMarkAllUnreadUsername(username String) notesViewMarkAllUnreadParam

func WithNotesViewNavigatorMarkAllReadUsername

func WithNotesViewNavigatorMarkAllReadUsername(username String) notesViewNavigatorMarkAllReadParam

func WithNotesViewNavigatorMarkAllUnreadUsername

func WithNotesViewNavigatorMarkAllUnreadUsername(username String) notesViewNavigatorMarkAllUnreadParam

func WithNotesViewRemoveColumnColumnNameOrIndex

func WithNotesViewRemoveColumnColumnNameOrIndex(columnNameOrIndex Long) notesViewRemoveColumnParam

func WithNotesViewResortViewAscendingFlag

func WithNotesViewResortViewAscendingFlag(ascendingFlag Boolean) notesViewResortViewParam

func WithNotesViewResortViewColumnName

func WithNotesViewResortViewColumnName(columnName String) notesViewResortViewParam

Types

type Boolean

type Boolean = bool

type Byte

type Byte = byte

type Currency

type Currency = float64

type Double

type Double = float64

type Integer

type Integer = int16

type Long

type Long = int32

type NotesACL

type NotesACL struct {
	NotesStruct
}

func (NotesACL) AddRole

func (a NotesACL) AddRole(name String) error

--------------------------------- Methods ------------------------------------ https://help.hcl-software.com/dom_designer/14.0.0/basic/H_ADDROLE_METHOD.html

func (NotesACL) AdministrationServer

func (a NotesACL) AdministrationServer() (String, error)

--------------------------------- Properties --------------------------------- https://help.hcl-software.com/dom_designer/14.0.0/basic/H_ADMINISTRATIONSERVER_PROPERTY_ACL.html

type NotesACLEntry

type NotesACLEntry struct {
	NotesStruct
}

func (NotesACLEntry) CanCreateDocuments

func (a NotesACLEntry) CanCreateDocuments() (Boolean, error)

--------------------------------- Properties --------------------------------- https://help.hcl-software.com/dom_designer/14.0.0/basic/H_ISAUTHORNOCREATE_PROPERTY.html

func (NotesACLEntry) DisableRole

func (a NotesACLEntry) DisableRole(name String) error

--------------------------------- Methods ------------------------------------ https://help.hcl-software.com/dom_designer/14.0.0/basic/H_DISABLEROLE_METHOD.html

type NotesAdministrationProcess

type NotesAdministrationProcess struct {
	NotesStruct
}

func (NotesAdministrationProcess) AddGroupMembers

func (a NotesAdministrationProcess) AddGroupMembers(group String, members []String) (String, error)

--------------------------------- Methods ------------------------------------ https://help.hcl-software.com/dom_designer/14.0.0/basic/H_ADDGROUPMEMBERS_METHOD_ADMINP.html

func (NotesAdministrationProcess) CertificateAuthorityOrg

func (a NotesAdministrationProcess) CertificateAuthorityOrg() (String, error)

--------------------------------- Properties --------------------------------- https://help.hcl-software.com/dom_designer/14.0.0/basic/H_CERTIFICATEAUTHORITYORG_PROPERTY_ADMINP.html

func (NotesAdministrationProcess) ConfigureMailAgent

func (a NotesAdministrationProcess) ConfigureMailAgent(username String, agentname String, params ...notesAdministrationProcessConfigureMailAgentParam) (String, error)

func (NotesAdministrationProcess) CreateReplica

func (a NotesAdministrationProcess) CreateReplica(sourceserver String, sourcedbfile String, destserver String, params ...notesAdministrationProcessCreateReplicaParam) (String, error)

func (NotesAdministrationProcess) Delegatemailfile

func (a NotesAdministrationProcess) Delegatemailfile(Mailfileowner String, Publicreaders []String, Publicwriters []String, Otherreaders Variant, Otherwriters []String, Othereditors []String, Otherdeleters []String, Removefromacl Variant, Mailfilename String, Mailserver String) (String, error)

https://help.hcl-software.com/dom_designer/14.0.0/basic/H_DELEGATEMAILFILE_METHOD_ADMINP.html

func (NotesAdministrationProcess) DeleteGroup

func (a NotesAdministrationProcess) DeleteGroup(groupname String, immediate Boolean, params ...notesAdministrationProcessDeleteGroupParam) error

func (NotesAdministrationProcess) DeleteUser

func (a NotesAdministrationProcess) DeleteUser(username String, immediate Boolean, mailfileaction Integer, denygroup String, params ...notesAdministrationProcessDeleteUserParam) (String, error)

func (NotesAdministrationProcess) MoveMailUser

func (a NotesAdministrationProcess) MoveMailUser(username String, newhomeserver String, newhomeservermailpath String, params ...notesAdministrationProcessMoveMailUserParam) (String, error)

func (NotesAdministrationProcess) MoveReplica

func (a NotesAdministrationProcess) MoveReplica(sourceserver String, sourcedbfile String, destserver String, params ...notesAdministrationProcessMoveReplicaParam) (String, error)

func (NotesAdministrationProcess) MoveRoamingUser

func (a NotesAdministrationProcess) MoveRoamingUser(username String, destserver String, destserverpath String) (String, error)

https://help.hcl-software.com/dom_designer/14.0.0/basic/H_MOVEROAMINGUSER_METHOD_ADMINP.html

func (NotesAdministrationProcess) MoveUserInHierarchyComplete

func (a NotesAdministrationProcess) MoveUserInHierarchyComplete(requestnoteid String, params ...notesAdministrationProcessMoveUserInHierarchyCompleteParam) (String, error)

func (NotesAdministrationProcess) MoveUserInHierarchyRequest

func (a NotesAdministrationProcess) MoveUserInHierarchyRequest(username String, targetcertifier String, params ...notesAdministrationProcessMoveUserInHierarchyRequestParam) (String, error)

func (NotesAdministrationProcess) RenameNotesUser

func (a NotesAdministrationProcess) RenameNotesUser(username String, params ...notesAdministrationProcessRenameNotesUserParam) (String, error)

func (NotesAdministrationProcess) RenameWebUser

func (a NotesAdministrationProcess) RenameWebUser(username String, newfullname String, params ...notesAdministrationProcessRenameWebUserParam) (String, error)

func (NotesAdministrationProcess) SetUserPasswordSettings

func (a NotesAdministrationProcess) SetUserPasswordSettings(username String, params ...notesAdministrationProcessSetUserPasswordSettingsParam) (String, error)

func (NotesAdministrationProcess) SignDatabaseWithServerID

func (a NotesAdministrationProcess) SignDatabaseWithServerID(server String, dbfile String, params ...notesAdministrationProcessSignDatabaseWithServerIDParam) (String, error)

func (NotesAdministrationProcess) UpgradeUserToHierarchical

func (a NotesAdministrationProcess) UpgradeUserToHierarchical(username String, params ...notesAdministrationProcessUpgradeUserToHierarchicalParam) (String, error)

type NotesAgent

type NotesAgent struct {
	NotesStruct
}

func (NotesAgent) Comment

func (a NotesAgent) Comment() (String, error)

--------------------------------- Properties --------------------------------- https://help.hcl-software.com/dom_designer/14.0.0/basic/H_COMMENT_PROPERTY.html

func (NotesAgent) GetPerformanceDocument

func (a NotesAgent) GetPerformanceDocument() (NotesAgent, error)

--------------------------------- Methods ------------------------------------ https://help.hcl-software.com/dom_designer/14.0.0/basic/H_GETPERFORMANCEDOCUMENT_METHOD_AGENT.html

func (NotesAgent) Lock

func (a NotesAgent) Lock(params ...notesAgentLockParam) (Boolean, error)

func (NotesAgent) LockProvisional

func (a NotesAgent) LockProvisional(params ...notesAgentLockProvisionalParam) (Boolean, error)

func (NotesAgent) Run

func (a NotesAgent) Run(params ...notesAgentRunParam) (Integer, error)

func (NotesAgent) RunOnServer

func (a NotesAgent) RunOnServer(params ...notesAgentRunOnServerParam) (Integer, error)

type NotesCalendar

type NotesCalendar struct {
	NotesStruct
}

func (NotesCalendar) CreateEntry

func (c NotesCalendar) CreateEntry(icalEntry String, params ...notesCalendarCreateEntryParam) (NotesCalendarEntry, error)

func (NotesCalendar) EntriesProcessed

func (c NotesCalendar) EntriesProcessed() (Long, error)

--------------------------------- Properties --------------------------------- https://help.hcl-software.com/dom_designer/14.0.0/basic/H_ENTRIESPROCESSED_PROPERTY_CAL.html

func (NotesCalendar) GetEntries

func (c NotesCalendar) GetEntries(start NotesDateTime, end NotesDateTime, params ...notesCalendarGetEntriesParam) (NotesCalendarEntry, error)

func (NotesCalendar) GetNewInvitations

func (c NotesCalendar) GetNewInvitations(params ...notesCalendarGetNewInvitationsParam) ([]NotesCalendarNotice, error)

func (NotesCalendar) ReadRange

func (c NotesCalendar) ReadRange(start NotesDateTime, end NotesDateTime, params ...notesCalendarReadRangeParam) (String, error)

type NotesCalendarEntry

type NotesCalendarEntry struct {
	NotesStruct
}

func (NotesCalendarEntry) AddInvitees

func (c NotesCalendarEntry) AddInvitees(requiredNames []String, optionalNames []String, fyiNames []String, params ...notesCalendarEntryAddInviteesParam) error

func (NotesCalendarEntry) Cancel

func (c NotesCalendarEntry) Cancel(comments String, params ...notesCalendarEntryCancelParam) error

func (NotesCalendarEntry) Counter

func (c NotesCalendarEntry) Counter(comments String, start NotesDateTime, end NotesDateTime, params ...notesCalendarEntryCounterParam) error

func (NotesCalendarEntry) Decline

func (c NotesCalendarEntry) Decline(comments String, params ...notesCalendarEntryDeclineParam) error

func (NotesCalendarEntry) Delegate

func (c NotesCalendarEntry) Delegate(commentsToOrganizer String, delegateTo String, params ...notesCalendarEntryDelegateParam) error

func (NotesCalendarEntry) GetAsDocument

func (c NotesCalendarEntry) GetAsDocument(params ...notesCalendarEntryGetAsDocumentParam) (NotesDocument, error)

func (NotesCalendarEntry) ModifyInvitees

func (c NotesCalendarEntry) ModifyInvitees(requiredNames []String, optionalNames []String, fyiNames []String, removeNames []String, params ...notesCalendarEntryModifyInviteesParam) error

func (NotesCalendarEntry) Read

func (c NotesCalendarEntry) Read(params ...notesCalendarEntryReadParam) (String, error)

func (NotesCalendarEntry) Remove

func (c NotesCalendarEntry) Remove(comments String, params ...notesCalendarEntryRemoveParam) error

func (NotesCalendarEntry) RemoveInvitees

func (c NotesCalendarEntry) RemoveInvitees(names []String, params ...notesCalendarEntryRemoveInviteesParam) error

func (NotesCalendarEntry) TentativelyAccept

func (c NotesCalendarEntry) TentativelyAccept(comments String, params ...notesCalendarEntryTentativelyAcceptParam) error

func (NotesCalendarEntry) Update

func (c NotesCalendarEntry) Update(icalentry String, params ...notesCalendarEntryUpdateParam) error

type NotesCalendarNotice

type NotesCalendarNotice struct {
	NotesStruct
}

func (NotesCalendarNotice) AcceptCounter

func (c NotesCalendarNotice) AcceptCounter(comments String) error

--------------------------------- Methods ------------------------------------ https://help.hcl-software.com/dom_designer/14.0.0/basic/H_ACCEPTCOUNTER_METHOD_CALNOTICE.html

func (NotesCalendarNotice) Counter

func (c NotesCalendarNotice) Counter(comments String, params ...notesCalendarNoticeCounterParam) error

func (NotesCalendarNotice) Decline

func (c NotesCalendarNotice) Decline(comments String, params ...notesCalendarNoticeDeclineParam) error

func (NotesCalendarNotice) Delegate

func (c NotesCalendarNotice) Delegate(commentsToOrganizer String, delegateTo String, params ...notesCalendarNoticeDelegateParam) error

type NotesColorObject

type NotesColorObject struct {
	NotesStruct
}

func (NotesColorObject) Blue

func (c NotesColorObject) Blue() (Long, error)

--------------------------------- Properties --------------------------------- https://help.hcl-software.com/dom_designer/14.0.0/basic/H_BLUE_PROPERTY_COLOR.html

func (NotesColorObject) SetHSL

func (c NotesColorObject) SetHSL(hue Long, saturation Long, luminance Long) (Long, error)

--------------------------------- Methods ------------------------------------ https://help.hcl-software.com/dom_designer/14.0.0/basic/H_SETHSL_METHOD_COLOR.html

type NotesDXLExporter

type NotesDXLExporter struct {
	NotesStruct
}

func (NotesDXLExporter) AttachmentOmittedText

func (d NotesDXLExporter) AttachmentOmittedText() (String, error)

--------------------------------- Properties --------------------------------- https://help.hcl-software.com/dom_designer/14.0.0/basic/H_ATTACHMENTOMITTEDTEXT_PROPERTY_EXPORTER.html

func (NotesDXLExporter) Export

func (d NotesDXLExporter) Export(input any) (String, error)

--------------------------------- Methods ------------------------------------ https://help.hcl-software.com/dom_designer/14.0.0/basic/H_EXPORT_METHOD_EXPORTER.html

type NotesDXLImporter

type NotesDXLImporter struct {
	NotesStruct
}

func (NotesDXLImporter) ACLImportOption

func (d NotesDXLImporter) ACLImportOption() (Long, error)

--------------------------------- Properties --------------------------------- https://help.hcl-software.com/dom_designer/14.0.0/basic/H_ACLIMPORTOPTION_PROPERTY_IMPORTER.html

func (NotesDXLImporter) GetFirstImportedNoteID

func (d NotesDXLImporter) GetFirstImportedNoteID() (String, error)

--------------------------------- Methods ------------------------------------ https://help.hcl-software.com/dom_designer/14.0.0/basic/H_GETFIRSTNOTEID_METHOD_DXLIMPORTER.html

type NotesDatabase

type NotesDatabase struct {
	NotesStruct
}

func (NotesDatabase) ACL

func (d NotesDatabase) ACL() (NotesACL, error)

--------------------------------- Properties --------------------------------- https://help.hcl-software.com/dom_designer/14.0.0/basic/H_ACL_PROPERTY.html

func (NotesDatabase) Compact

func (d NotesDatabase) Compact() (Long, error)

--------------------------------- Methods ------------------------------------ https://help.hcl-software.com/dom_designer/14.0.0/basic/H_COMPACT_METHOD.html

func (NotesDatabase) CompactWithOptions

func (d NotesDatabase) CompactWithOptions(options any, params ...notesDatabaseCompactWithOptionsParam) (Long, error)

func (NotesDatabase) Create

func (d NotesDatabase) Create(server String, dbfile String, openFlag Boolean, params ...notesDatabaseCreateParam) error

func (NotesDatabase) CreateCopy

func (d NotesDatabase) CreateCopy(newServer String, newDbFile String, params ...notesDatabaseCreateCopyParam) (NotesDatabase, error)

func (NotesDatabase) CreateFromTemplate

func (d NotesDatabase) CreateFromTemplate(newServer String, newDbFile String, inheritFlag Boolean, params ...notesDatabaseCreateFromTemplateParam) (NotesDatabase, error)

func (NotesDatabase) CreateOutline

func (d NotesDatabase) CreateOutline(outlinename String, params ...notesDatabaseCreateOutlineParam) (NotesOutline, error)

func (NotesDatabase) CreateView

func (d NotesDatabase) CreateView(params ...notesDatabaseCreateViewParam) (NotesView, error)

func (NotesDatabase) EncryptionStrength

func (d NotesDatabase) EncryptionStrength() (Integer, error)

TODO: Access type for EncryptionStrength could not be evaluated, check yourself if getter/setter is needed. https://help.hcl-software.com/dom_designer/14.0.0/basic/H_ENCRYPTIONSTRENGTH_PROPERTY_DB.html

func (NotesDatabase) FTDomainSearch

func (d NotesDatabase) FTDomainSearch(query String, maxDocs Integer, entryform String, params ...notesDatabaseFTDomainSearchParam) (NotesDocument, error)

func (NotesDatabase) FTSearch

func (d NotesDatabase) FTSearch(query String, maxdocs Integer, params ...notesDatabaseFTSearchParam) (NotesDocumentCollection, error)

func (NotesDatabase) FTSearchRange

func (d NotesDatabase) FTSearchRange(query String, maxdocs Integer, params ...notesDatabaseFTSearchRangeParam) (NotesDocumentCollection, error)

func (NotesDatabase) Fixup

func (d NotesDatabase) Fixup(params ...notesDatabaseFixupParam) error

func (NotesDatabase) GetAllReadDocuments

func (d NotesDatabase) GetAllReadDocuments(params ...notesDatabaseGetAllReadDocumentsParam) (NotesNoteCollection, error)

func (NotesDatabase) GetAllUnreadDocuments

func (d NotesDatabase) GetAllUnreadDocuments(params ...notesDatabaseGetAllUnreadDocumentsParam) (NotesNoteCollection, error)

func (NotesDatabase) GetDocumentByURL

func (d NotesDatabase) GetDocumentByURL(URL String, params ...notesDatabaseGetDocumentByURLParam) (NotesDocument, error)

func (NotesDatabase) GetModifiedDocuments

func (d NotesDatabase) GetModifiedDocuments(params ...notesDatabaseGetModifiedDocumentsParam) (NotesDocumentCollection, error)

func (NotesDatabase) GetNamedDocCollection

func (d NotesDatabase) GetNamedDocCollection(params ...notesDatabaseGetNamedDocCollectionParam) error

func (NotesDatabase) GetProfileDocCollection

func (d NotesDatabase) GetProfileDocCollection(params ...notesDatabaseGetProfileDocCollectionParam) (NotesDocumentCollection, error)

func (NotesDatabase) GetProfileDocument

func (d NotesDatabase) GetProfileDocument(profilename String, params ...notesDatabaseGetProfileDocumentParam) (NotesDocument, error)

func (NotesDatabase) GetURLHeaderInfo

func (d NotesDatabase) GetURLHeaderInfo(params ...notesDatabaseGetURLHeaderInfoParam) (String, error)

func (NotesDatabase) Sign

func (d NotesDatabase) Sign(params ...notesDatabaseSignParam) error

func (NotesDatabase) UnprocessedFTSearch

func (d NotesDatabase) UnprocessedFTSearch(query String, maxdocs Integer, params ...notesDatabaseUnprocessedFTSearchParam) (NotesDocumentCollection, error)

func (NotesDatabase) UnprocessedFTSearchRange

func (d NotesDatabase) UnprocessedFTSearchRange(query String, maxdocs Integer, params ...notesDatabaseUnprocessedFTSearchRangeParam) (NotesDocumentCollection, error)

type NotesDateTime

type NotesDateTime struct {
	NotesStruct
}

func (NotesDateTime) AdjustDay

func (d NotesDateTime) AdjustDay(n Integer, params ...notesDateTimeAdjustDayParam) error

func (NotesDateTime) AdjustHour

func (d NotesDateTime) AdjustHour(n Integer, params ...notesDateTimeAdjustHourParam) error

func (NotesDateTime) AdjustMinute

func (d NotesDateTime) AdjustMinute(n Integer, params ...notesDateTimeAdjustMinuteParam) error

func (NotesDateTime) AdjustMonth

func (d NotesDateTime) AdjustMonth(n Integer, params ...notesDateTimeAdjustMonthParam) error

func (NotesDateTime) AdjustSecond

func (d NotesDateTime) AdjustSecond(n Integer, params ...notesDateTimeAdjustSecondParam) error

func (NotesDateTime) AdjustYear

func (d NotesDateTime) AdjustYear(n Integer, params ...notesDateTimeAdjustYearParam) error

func (NotesDateTime) DateOnly

func (d NotesDateTime) DateOnly() (String, error)

--------------------------------- Properties --------------------------------- https://help.hcl-software.com/dom_designer/14.0.0/basic/H_DATEONLY_PROPERTY.html

type NotesDbDirectory

type NotesDbDirectory struct {
	NotesStruct
}

func (NotesDbDirectory) CreateDatabase

func (d NotesDbDirectory) CreateDatabase(dbfile String, params ...notesDbDirectoryCreateDatabaseParam) (NotesDatabase, error)

func (NotesDbDirectory) Name

func (d NotesDbDirectory) Name() (String, error)

--------------------------------- Properties --------------------------------- https://help.hcl-software.com/dom_designer/14.0.0/basic/H_NAME_PROPERTY_DIRECTORY.html

func (NotesDbDirectory) OpenDatabase

func (d NotesDbDirectory) OpenDatabase(dbfile String, params ...notesDbDirectoryOpenDatabaseParam) (NotesDatabase, error)

type NotesDbDirectoryFileType

type NotesDbDirectoryFileType = Integer
const (
	NOTESDBDIRECTORY_FILETYPE_DATABASE           NotesDbDirectoryFileType = 1247
	NOTESDBDIRECTORY_FILETYPE_NOTES_DATABASE     NotesDbDirectoryFileType = 1247
	NOTESDBDIRECTORY_FILETYPE_TEMPLATE           NotesDbDirectoryFileType = 1248
	NOTESDBDIRECTORY_FILETYPE_REPLICA_CANDIDATE  NotesDbDirectoryFileType = 1245
	NOTESDBDIRECTORY_FILETYPE_TEMPLATE_CANDIDATE NotesDbDirectoryFileType = 1246
)

type NotesDirectory

type NotesDirectory struct {
	NotesStruct
}

func (NotesDirectory) AvailableItems

func (d NotesDirectory) AvailableItems() ([]Variant, error)

--------------------------------- Properties --------------------------------- https://help.hcl-software.com/dom_designer/14.0.0/basic/H_AVAILABLEITEMS_PROPERTY_DIRECTORY.html

func (NotesDirectory) CreateNavigator

func (d NotesDirectory) CreateNavigator() (NotesDirectoryNavigator, error)

--------------------------------- Methods ------------------------------------ https://help.hcl-software.com/dom_designer/14.0.0/basic/H_CREATENAVIGATOR_METHOD_DIRECTORY.html

func (NotesDirectory) GetMailInfo

func (d NotesDirectory) GetMailInfo(username String, params ...notesDirectoryGetMailInfoParam) ([]String, error)

func (NotesDirectory) LookupNames

func (d NotesDirectory) LookupNames(view NotesView, names []String, items []String, params ...notesDirectoryLookupNamesParam) (NotesDirectoryNavigator, error)

type NotesDirectoryNavigator

type NotesDirectoryNavigator struct {
	NotesStruct
}

func (NotesDirectoryNavigator) CurrentItem

func (d NotesDirectoryNavigator) CurrentItem() (String, error)

--------------------------------- Properties --------------------------------- https://help.hcl-software.com/dom_designer/14.0.0/basic/H_CURRENTITEM_PROPERTY_DIRECTORYNAVIGATOR.html

func (NotesDirectoryNavigator) FindFirstMatch

func (d NotesDirectoryNavigator) FindFirstMatch() (Boolean, error)

--------------------------------- Methods ------------------------------------ https://help.hcl-software.com/dom_designer/14.0.0/basic/H_FINDFIRSTMATCH_METHOD_DIRECTORYNAVIGATOR.html

type NotesDocument

type NotesDocument struct {
	NotesStruct
}

func (NotesDocument) AppendItemValue

func (d NotesDocument) AppendItemValue(itemName String, value any) (NotesItem, error)

--------------------------------- Methods ------------------------------------ https://help.hcl-software.com/dom_designer/14.0.0/basic/H_APPENDITEMVALUE_METHOD.html

func (NotesDocument) Authors

func (d NotesDocument) Authors() ([]String, error)

--------------------------------- Properties --------------------------------- https://help.hcl-software.com/dom_designer/14.0.0/basic/H_AUTHORS_PROPERTY.html

func (NotesDocument) CloseMIMEEntities

func (d NotesDocument) CloseMIMEEntities(params ...notesDocumentCloseMIMEEntitiesParam) (Boolean, error)

func (NotesDocument) ColumnValues

func (d NotesDocument) ColumnValues() ([]any, error)

https://help.hcl-software.com/dom_designer/14.0.0/basic/H_COLUMNVALUES_PROPERTY.html TODO: Wrap values into struct.

func (NotesDocument) ConvertToMIME

func (d NotesDocument) ConvertToMIME(params ...notesDocumentConvertToMIMEParam) error

func (NotesDocument) CopyAllItems

func (d NotesDocument) CopyAllItems(notesDocument NotesDocument, params ...notesDocumentCopyAllItemsParam) error

func (NotesDocument) CreateMIMEEntity

func (d NotesDocument) CreateMIMEEntity(params ...notesDocumentCreateMIMEEntityParam) (NotesMIMEEntity, error)

func (NotesDocument) GetItemValueDateTimeArray

func (d NotesDocument) GetItemValueDateTimeArray(itemName String) ([]NotesDateTime, error)

https://help.hcl-software.com/dom_designer/14.0.0/basic/H_GETITEMVALUEDATETIMEARRAY_METHOD.html TODO: Find out how to handle different return value types.

func (NotesDocument) GetMIMEEntity

func (d NotesDocument) GetMIMEEntity(params ...notesDocumentGetMIMEEntityParam) (NotesMIMEEntity, error)

func (NotesDocument) GetRead

func (d NotesDocument) GetRead(params ...notesDocumentGetReadParam) (Boolean, error)

func (NotesDocument) Lock

func (d NotesDocument) Lock(params ...notesDocumentLockParam) (Boolean, error)

func (NotesDocument) LockProvisional

func (d NotesDocument) LockProvisional(params ...notesDocumentLockProvisionalParam) (Boolean, error)

func (NotesDocument) MarkRead

func (d NotesDocument) MarkRead(params ...notesDocumentMarkReadParam) error

func (NotesDocument) MarkUnread

func (d NotesDocument) MarkUnread(params ...notesDocumentMarkUnreadParam) error

func (NotesDocument) PutInFolder

func (d NotesDocument) PutInFolder(folderName String, params ...notesDocumentPutInFolderParam) error

func (NotesDocument) Save

func (d NotesDocument) Save(force Boolean, createResponse Boolean, params ...notesDocumentSaveParam) (Boolean, error)

func (NotesDocument) Send

func (d NotesDocument) Send(attachForm Boolean, params ...notesDocumentSendParam) error

type NotesDocumentCollection

type NotesDocumentCollection struct {
	NotesStruct
}

func (NotesDocumentCollection) AddDocument

func (d NotesDocumentCollection) AddDocument(document NotesDocument, params ...notesDocumentCollectionAddDocumentParam) error

func (NotesDocumentCollection) Contains

func (d NotesDocumentCollection) Contains(inputNotes any) (Boolean, error)

https://help.hcl-software.com/dom_designer/14.0.0/basic/H_CONTAINS_METHOD_COLLECTION.html TODO: Handle different input types (see documentation).

func (NotesDocumentCollection) Count

func (d NotesDocumentCollection) Count() (Long, error)

--------------------------------- Properties --------------------------------- https://help.hcl-software.com/dom_designer/14.0.0/basic/H_COUNT_PROPERTY.html

func (NotesDocumentCollection) Intersect

func (d NotesDocumentCollection) Intersect(inputNotes any) error

https://help.hcl-software.com/dom_designer/14.0.0/basic/H_INTERSECT_METHOD_COLLECTION.html TODO: Handle different input types (see documentation).

func (NotesDocumentCollection) MarkAllRead

func (d NotesDocumentCollection) MarkAllRead(params ...notesDocumentCollectionMarkAllReadParam) error

func (NotesDocumentCollection) MarkAllUnread

func (d NotesDocumentCollection) MarkAllUnread(params ...notesDocumentCollectionMarkAllUnreadParam) error

func (NotesDocumentCollection) Merge

func (d NotesDocumentCollection) Merge(inputNotes any) error

https://help.hcl-software.com/dom_designer/14.0.0/basic/H_MERGE_METHOD_COLLECTION.html TODO: Handle different input types (see documentation).

func (NotesDocumentCollection) PutAllInFolder

func (d NotesDocumentCollection) PutAllInFolder(folderName String, params ...notesDocumentCollectionPutAllInFolderParam) error

func (NotesDocumentCollection) Subtract

func (d NotesDocumentCollection) Subtract(inputNotes any) error

https://help.hcl-software.com/dom_designer/14.0.0/basic/H_SUBTRACT_METHOD_COLLECTION.html TODO: Handle different input types (see documentation).

type NotesDominoQuery

type NotesDominoQuery struct {
	NotesStruct
}

func (NotesDominoQuery) CreateIndex

func (d NotesDominoQuery) CreateIndex(indexName String, field []String, params ...notesDominoQueryCreateIndexParam) error

func (NotesDominoQuery) Execute

func (d NotesDominoQuery) Execute(query String, params ...notesDominoQueryExecuteParam) (NotesDocumentCollection, error)

func (NotesDominoQuery) MaxScanDocs

func (d NotesDominoQuery) MaxScanDocs() (Long, error)

--------------------------------- Properties --------------------------------- https://help.hcl-software.com/dom_designer/14.0.0/basic/H_MAXSCANDOCS_PROPERTY_NDQ.html#reference_a4g_r13_cgb

func (NotesDominoQuery) SetNamedVariable

func (d NotesDominoQuery) SetNamedVariable(variableName String, value any) error

https://help.hcl-software.com/dom_designer/14.0.0/basic/H_SETNAMEDVARIABLE_METHOD_NDQ.html#reference_h2j_fgj_cgb TODO: Handle different input types (see documentation).

type NotesEmbeddedObject

type NotesEmbeddedObject struct {
	NotesStruct
}

func (NotesEmbeddedObject) Activate

func (e NotesEmbeddedObject) Activate(show Boolean) (*ole.IDispatch, error)

--------------------------------- Methods ------------------------------------ https://help.hcl-software.com/dom_designer/14.0.0/basic/H_ACTIVATE_METHOD.html

func (NotesEmbeddedObject) Class

func (e NotesEmbeddedObject) Class() (String, error)

--------------------------------- Properties --------------------------------- https://help.hcl-software.com/dom_designer/14.0.0/basic/H_CLASS_PROPERTY.html

type NotesEmbeddedObjectEmbedType

type NotesEmbeddedObjectEmbedType = Long
const (
	NOTESEMBEDDEDOBJECT_EMBED_ATTACHMENT NotesEmbeddedObjectEmbedType = 1454
	NOTESEMBEDDEDOBJECT_EMBED_OBJECT     NotesEmbeddedObjectEmbedType = 1453
	NOTESEMBEDDEDOBJECT_EMBED_OBJECTLINK NotesEmbeddedObjectEmbedType = 1452
)

type NotesForm

type NotesForm struct {
	NotesStruct
}

func (NotesForm) Aliases

func (f NotesForm) Aliases() ([]String, error)

--------------------------------- Properties --------------------------------- https://help.hcl-software.com/dom_designer/14.0.0/basic/H_ALIASES_PROPERTY_FORM.html

func (NotesForm) GetFieldType

func (f NotesForm) GetFieldType(name String) (NotesItemDataType, error)

--------------------------------- Methods ------------------------------------ https://help.hcl-software.com/dom_designer/14.0.0/basic/H_GETFIELDTYPE_METHOD_FORM.html

func (NotesForm) Lock

func (f NotesForm) Lock(params ...notesFormLockParam) (Boolean, error)

func (NotesForm) LockProvisional

func (f NotesForm) LockProvisional(params ...notesFormLockProvisionalParam) (Boolean, error)

type NotesInternational

type NotesInternational struct {
	NotesStruct
}

func (NotesInternational) AMString

func (i NotesInternational) AMString() (String, error)

--------------------------------- Properties --------------------------------- https://help.hcl-software.com/dom_designer/14.0.0/basic/H_AMSTRING_PROPERTY.html

type NotesItem

type NotesItem struct {
	NotesStruct
}

func (NotesItem) Abstract

func (i NotesItem) Abstract(maxAbstract Long, dropVowels Boolean, useDictionary Boolean) (String, error)

--------------------------------- Methods ------------------------------------ https://help.hcl-software.com/dom_designer/14.0.0/basic/H_ABSTRACT_METHOD.html

func (NotesItem) DateTimeValue

func (i NotesItem) DateTimeValue() (NotesDateTime, error)

--------------------------------- Properties --------------------------------- https://help.hcl-software.com/dom_designer/14.0.0/basic/H_DATETIMEVALUE_PROPERTY.html

func (NotesItem) GetValueDateTimeArray

func (i NotesItem) GetValueDateTimeArray() ([]NotesDateTime, error)

https://help.hcl-software.com/dom_designer/14.0.0/basic/H_GETVALUEDATETIMEARRAY_METHOD.html TODO: Check documentation, return type can vary...

func (NotesItem) SetValues

func (i NotesItem) SetValues(v any) error

https://help.hcl-software.com/dom_designer/14.0.0/basic/H_VALUES_PROPERTY.html TODO: Handle different types. TODO: Wrap values into struct.

func (NotesItem) Values

func (i NotesItem) Values() (any, error)

https://help.hcl-software.com/dom_designer/14.0.0/basic/H_VALUES_PROPERTY.html TODO: Handle different types. TODO: Wrap values into struct.

type NotesItemDataType

type NotesItemDataType = Long
const (
	NOTESITEM_TYPE_ACTIONCD       NotesItemDataType = 16
	NOTESITEM_TYPE_ASSISTANTINFO  NotesItemDataType = 17
	NOTESITEM_TYPE_ATTACHMENT     NotesItemDataType = 1084
	NOTESITEM_TYPE_AUTHORS        NotesItemDataType = 1076
	NOTESITEM_TYPE_COLLATION      NotesItemDataType = 2
	NOTESITEM_TYPE_DATETIMES      NotesItemDataType = 1024
	NOTESITEM_TYPE_EMBEDDEDOBJECT NotesItemDataType = 1090
	NOTESITEM_TYPE_ERRORITEM      NotesItemDataType = 256
	NOTESITEM_TYPE_FORMULA        NotesItemDataType = 1536
	NOTESITEM_TYPE_HTML           NotesItemDataType = 21
	NOTESITEM_TYPE_ICON           NotesItemDataType = 6
	NOTESITEM_TYPE_LSOBJECT       NotesItemDataType = 20
	NOTESITEM_TYPE_MIME_PART      NotesItemDataType = 25
	NOTESITEM_TYPE_NAMES          NotesItemDataType = 1074
	NOTESITEM_TYPE_NOTELINKS      NotesItemDataType = 7
	NOTESITEM_TYPE_NOTEREFS       NotesItemDataType = 4
	NOTESITEM_TYPE_NUMBERS        NotesItemDataType = 768
	NOTESITEM_TYPE_OTHEROBJECT    NotesItemDataType = 1085
	NOTESITEM_TYPE_QUERYCD        NotesItemDataType = 15
	NOTESITEM_TYPE_READERS        NotesItemDataType = 1075
	NOTESITEM_TYPE_RFC822TEXT     NotesItemDataType = 1282
	NOTESITEM_TYPE_RICHTEXT       NotesItemDataType = 1
	NOTESITEM_TYPE_SIGNATURE      NotesItemDataType = 8
	NOTESITEM_TYPE_TEXT           NotesItemDataType = 1280
	NOTESITEM_TYPE_UNAVAILABLE    NotesItemDataType = 512
	NOTESITEM_TYPE_UNKNOWN        NotesItemDataType = 0
	NOTESITEM_TYPE_USERDATA       NotesItemDataType = 14
	NOTESITEM_TYPE_USERID         NotesItemDataType = 1792
	NOTESITEM_TYPE_VIEWMAPDATA    NotesItemDataType = 18
	NOTESITEM_TYPE_VIEWMAPLAYOUT  NotesItemDataType = 19
)

type NotesLog

type NotesLog struct {
	NotesStruct
}

func (NotesLog) Close

func (l NotesLog) Close() error

--------------------------------- Methods ------------------------------------ https://help.hcl-software.com/dom_designer/14.0.0/basic/H_CLOSE_METHOD_LOG.html

func (NotesLog) LogActions

func (l NotesLog) LogActions() (Boolean, error)

--------------------------------- Properties --------------------------------- https://help.hcl-software.com/dom_designer/14.0.0/basic/H_LOGACTIONS_PROPERTY.html

type NotesLogEventType

type NotesLogEventType = Long
const (
	NOTESLOG_EV_ALARM    NotesLogEventType = 8
	NOTESLOG_EV_COMM     NotesLogEventType = 1
	NOTESLOG_EV_MAIL     NotesLogEventType = 3
	NOTESLOG_EV_MISC     NotesLogEventType = 6
	NOTESLOG_EV_REPLICA  NotesLogEventType = 4
	NOTESLOG_EV_RESOURCE NotesLogEventType = 5
	NOTESLOG_EV_SECURITY NotesLogEventType = 2
	NOTESLOG_EV_SERVER   NotesLogEventType = 7
	NOTESLOG_EV_UNKNOWN  NotesLogEventType = 0
	NOTESLOG_EV_UPDATE   NotesLogEventType = 9
)

type NotesLogSeverity

type NotesLogSeverity = Long
const (
	SEV_FAILURE  NotesLogSeverity = 2
	SEV_FATAL    NotesLogSeverity = 1
	SEV_NORMAL   NotesLogSeverity = 5
	SEV_WARNING1 NotesLogSeverity = 3
	SEV_WARNING2 NotesLogSeverity = 4
)

type NotesMIMEEntity

type NotesMIMEEntity struct {
	NotesStruct
}

func (NotesMIMEEntity) BoundaryEnd

func (m NotesMIMEEntity) BoundaryEnd() (String, error)

--------------------------------- Properties --------------------------------- https://help.hcl-software.com/dom_designer/14.0.0/basic/H_BOUNDARYEND_PROPERTY_MIMEENTITY.html

func (NotesMIMEEntity) CreateChildEntity

func (m NotesMIMEEntity) CreateChildEntity(params ...notesMIMEEntityCreateChildEntityParam) (NotesMIMEEntity, error)

func (NotesMIMEEntity) GetContentAsBytes

func (m NotesMIMEEntity) GetContentAsBytes(stream NotesStream, params ...notesMIMEEntityGetContentAsBytesParam) error

func (NotesMIMEEntity) GetContentAsText

func (m NotesMIMEEntity) GetContentAsText(stream NotesStream, params ...notesMIMEEntityGetContentAsTextParam) error

func (NotesMIMEEntity) GetEntityAsText

func (m NotesMIMEEntity) GetEntityAsText(stream NotesStream, params ...notesMIMEEntityGetEntityAsTextParam) error

func (NotesMIMEEntity) GetNextEntity

func (m NotesMIMEEntity) GetNextEntity(params ...notesMIMEEntityGetNextEntityParam) (NotesMIMEEntity, error)

func (NotesMIMEEntity) GetNthHeader

func (m NotesMIMEEntity) GetNthHeader(headerName String, params ...notesMIMEEntityGetNthHeaderParam) (NotesMIMEHeader, error)

func (NotesMIMEEntity) GetPrevEntity

func (m NotesMIMEEntity) GetPrevEntity(params ...notesMIMEEntityGetPrevEntityParam) (NotesMIMEEntity, error)

func (NotesMIMEEntity) GetSomeHeaders

func (m NotesMIMEEntity) GetSomeHeaders(params ...notesMIMEEntityGetSomeHeadersParam) (String, error)

type NotesMIMEEntityEncoding

type NotesMIMEEntityEncoding = Long
const (
	NOTESMIMEENTITY_ENC_BASE64           NotesMIMEEntityEncoding = 1727
	NOTESMIMEENTITY_ENC_EXTENSION        NotesMIMEEntityEncoding = 1731
	NOTESMIMEENTITY_ENC_IDENTITY_7BIT    NotesMIMEEntityEncoding = 1728
	NOTESMIMEENTITY_ENC_IDENTITY_8BIT    NotesMIMEEntityEncoding = 1729
	NOTESMIMEENTITY_ENC_IDENTITY_BINARY  NotesMIMEEntityEncoding = 1730
	NOTESMIMEENTITY_ENC_NONE             NotesMIMEEntityEncoding = 1725
	NOTESMIMEENTITY_ENC_QUOTED_PRINTABLE NotesMIMEEntityEncoding = 1726
)

type NotesMIMEHeader

type NotesMIMEHeader struct {
	NotesStruct
}

func (NotesMIMEHeader) AddValText

func (m NotesMIMEHeader) AddValText(valueText String, params ...notesMIMEHeaderAddValTextParam) (Boolean, error)

func (NotesMIMEHeader) GetHeaderVal

func (m NotesMIMEHeader) GetHeaderVal(params ...notesMIMEHeaderGetHeaderValParam) (String, error)

func (NotesMIMEHeader) GetHeaderValAndParams

func (m NotesMIMEHeader) GetHeaderValAndParams(params ...notesMIMEHeaderGetHeaderValAndParamsParam) (String, error)

func (NotesMIMEHeader) GetParamVal

func (m NotesMIMEHeader) GetParamVal(paramName String, params ...notesMIMEHeaderGetParamValParam) (String, error)

func (NotesMIMEHeader) HeaderName

func (m NotesMIMEHeader) HeaderName() (String, error)

--------------------------------- Properties --------------------------------- https://help.hcl-software.com/dom_designer/14.0.0/basic/H_HEADERNAME_PROPERTY_MIMEHEADER.html

type NotesName

type NotesName struct {
	NotesStruct
}

func (NotesName) Abbreviated

func (n NotesName) Abbreviated() (String, error)

--------------------------------- Properties --------------------------------- https://help.hcl-software.com/dom_designer/14.0.0/basic/H_ABBREVIATED_PROPERTY.html

type NotesNewsletter

type NotesNewsletter struct {
	NotesStruct
}

func (NotesNewsletter) DoScore

func (n NotesNewsletter) DoScore() (Boolean, error)

--------------------------------- Properties --------------------------------- https://help.hcl-software.com/dom_designer/14.0.0/basic/H_DOSCORE_PROPERTY.html

func (NotesNewsletter) FormatDocument

func (n NotesNewsletter) FormatDocument(notesDatabase NotesDatabase, documentNumber Integer) (NotesDocument, error)

--------------------------------- Methods ------------------------------------ https://help.hcl-software.com/dom_designer/14.0.0/basic/H_FORMATDOCUMENT_METHOD.html

type NotesNoteCollection

type NotesNoteCollection struct {
	NotesStruct
}

func (NotesNoteCollection) Add

func (n NotesNoteCollection) Add(additionSpecifier any) error

--------------------------------- Methods ------------------------------------ https://help.hcl-software.com/dom_designer/14.0.0/basic/H_ADD_METHOD_NOTECOLLECTION.html

func (NotesNoteCollection) Count

func (n NotesNoteCollection) Count() (Long, error)

--------------------------------- Properties --------------------------------- https://help.hcl-software.com/dom_designer/14.0.0/basic/H_COUNT_PROPERTY_NOTECOLLECTION.html

type NotesOutline

type NotesOutline struct {
	NotesStruct
}

func (NotesOutline) AddEntry

func (o NotesOutline) AddEntry(newEntry NotesOutlineEntry, params ...notesOutlineAddEntryParam) error

func (NotesOutline) Alias

func (o NotesOutline) Alias() (String, error)

--------------------------------- Properties --------------------------------- https://help.hcl-software.com/dom_designer/14.0.0/basic/H_ALIAS_PROPERTY_OUTLINE.html

func (NotesOutline) CreateEntry

func (o NotesOutline) CreateEntry(name String, params ...notesOutlineCreateEntryParam) (NotesOutlineEntry, error)

func (NotesOutline) CreateEntryFrom

func (o NotesOutline) CreateEntryFrom(entry NotesOutlineEntry, params ...notesOutlineCreateEntryFromParam) (NotesOutlineEntry, error)

func (NotesOutline) MoveEntry

func (o NotesOutline) MoveEntry(currentEntry NotesOutlineEntry, refEntry NotesOutlineEntry, params ...notesOutlineMoveEntryParam) error

type NotesOutlineEntry

type NotesOutlineEntry struct {
	NotesStruct
}

func (NotesOutlineEntry) Alias

func (o NotesOutlineEntry) Alias() (String, error)

--------------------------------- Properties --------------------------------- https://help.hcl-software.com/dom_designer/14.0.0/basic/H_ALIAS_PROPERTY_OUTLINEENTRY.html

func (NotesOutlineEntry) SetAction

func (o NotesOutlineEntry) SetAction(formula String) (Boolean, error)

--------------------------------- Methods ------------------------------------ https://help.hcl-software.com/dom_designer/14.0.0/basic/H_SETACTION_METHOD_OUTLINEENTRY.html

func (o NotesOutlineEntry) SetNoteLink(notesDatabase NotesDatabase, notesView NotesView, notesDocument NotesDocument, Obj notesStruct) (Boolean, error)

https://help.hcl-software.com/dom_designer/14.0.0/basic/H_SETNOTELINK_METHOD_OUTLINEENTRY.html

type NotesProperty

type NotesProperty struct {
	NotesStruct
}

func (NotesProperty) Clear

func (p NotesProperty) Clear() error

--------------------------------- Methods ------------------------------------ https://help.hcl-software.com/dom_designer/14.0.0/basic/H_NOTESPROPERTY_CLEAR_METHOD.html

func (NotesProperty) Description

func (p NotesProperty) Description() (String, error)

--------------------------------- Properties --------------------------------- https://help.hcl-software.com/dom_designer/14.0.0/basic/H_NOTESPROPERTY_DESCRIPTION_PROPERTY.html

type NotesPropertyBroker

type NotesPropertyBroker struct {
	NotesStruct
}

func (NotesPropertyBroker) ClearProperty

func (p NotesPropertyBroker) ClearProperty(name String) error

--------------------------------- Methods ------------------------------------ https://help.hcl-software.com/dom_designer/14.0.0/basic/H_PROPERTYBROKER_CLEARPROPERTY_METHOD.html

func (NotesPropertyBroker) InputPropertyContext

func (p NotesPropertyBroker) InputPropertyContext() ([]NotesProperty, error)

--------------------------------- Properties --------------------------------- https://help.hcl-software.com/dom_designer/14.0.0/basic/H_PROPERTYBROKER_INPUTPROPERTYCONTEXT.html

type NotesQueryResultsProcessor

type NotesQueryResultsProcessor struct {
	NotesStruct
}

func (NotesQueryResultsProcessor) AddCollection

func (q NotesQueryResultsProcessor) AddCollection(Collection Variant, ReferenceName String) error

--------------------------------- Methods ------------------------------------ https://help.hcl-software.com/dom_designer/14.0.0/basic/H_ADDCOLLECTION_METHOD.html

func (NotesQueryResultsProcessor) AddColumn

func (q NotesQueryResultsProcessor) AddColumn(name String, params ...notesQueryResultsProcessorAddColumnParam) error

func (NotesQueryResultsProcessor) AddFormula

func (q NotesQueryResultsProcessor) AddFormula(formula String, columnName String, referenceName String) error

https://help.hcl-software.com/dom_designer/14.0.0/basic/H_ADDFORMULA_METHOD.html

func (NotesQueryResultsProcessor) ExecuteToView

func (q NotesQueryResultsProcessor) ExecuteToView(name String, params ...notesQueryResultsProcessorExecuteToViewParam) error

func (NotesQueryResultsProcessor) MaxEntries

func (q NotesQueryResultsProcessor) MaxEntries() (Long, error)

--------------------------------- Properties --------------------------------- https://help.hcl-software.com/dom_designer/14.0.0/basic/H_MAXENTRIES_PROPERTY.html

type NotesRegistration

type NotesRegistration struct {
	NotesStruct
}

func (NotesRegistration) AddCertifierToAddressBook

func (r NotesRegistration) AddCertifierToAddressBook(idfile String, certpw String, location String, comment String) error

--------------------------------- Methods ------------------------------------ https://help.hcl-software.com/dom_designer/14.0.0/basic/H_ADDCERTIFIERTOADDRESSBOOK_METHOD.html

func (NotesRegistration) AddServerToAddressBook

func (r NotesRegistration) AddServerToAddressBook(idfile String, server String, domain String, userpw String, network String, adminname String, title String, location String, comment String) error

https://help.hcl-software.com/dom_designer/14.0.0/basic/H_ADDSERVERTOADDRESSBOOK_METHOD.html

func (NotesRegistration) AddUserToAddressBook

func (r NotesRegistration) AddUserToAddressBook(idfile String, fullname String, lastname String, userpw String, firstname String, middle String, mailserver String, mailidpath String, fwdaddress String, location String, comment String) error

https://help.hcl-software.com/dom_designer/14.0.0/basic/H_ADDUSERTOADDRESSBOOK_METHOD.html

func (NotesRegistration) AltOrgUnit

func (r NotesRegistration) AltOrgUnit() ([]String, error)

--------------------------------- Properties --------------------------------- https://help.hcl-software.com/dom_designer/14.0.0/basic/H_ALTORGUNIT_PROPERTY_NOTESREGISTRATION.html

func (NotesRegistration) GetUserInfo

func (r NotesRegistration) GetUserInfo(username String, retMailServer String, retMailFile String, retMailDomain String, retMailSystem Integer, retProfile String) error

https://help.hcl-software.com/dom_designer/14.0.0/basic/H_GETUSERINFO_METHOD.html

func (NotesRegistration) RegisterNewServer

func (r NotesRegistration) RegisterNewServer(server String, idfile String, domain String, servpw String, certpw String, location String, comment String, network String, adminname String, title String) error

https://help.hcl-software.com/dom_designer/14.0.0/basic/H_REGISTERNEWSERVER_METHOD.html

func (NotesRegistration) RegisterNewUser

func (r NotesRegistration) RegisterNewUser(lastName String, idFile String, mailServer String, params ...notesRegistrationRegisterNewUserParam) error

type NotesReplication

type NotesReplication struct {
	NotesStruct
}

func (NotesReplication) Abstract

func (r NotesReplication) Abstract() (Boolean, error)

--------------------------------- Properties --------------------------------- https://help.hcl-software.com/dom_designer/14.0.0/basic/H_ABSTRACT_PROPERTY_2067.html

func (NotesReplication) ClearHistory

func (r NotesReplication) ClearHistory() error

--------------------------------- Methods ------------------------------------ https://help.hcl-software.com/dom_designer/14.0.0/basic/H_CLEARHISTORY_METHOD_8188.html

func (NotesReplication) GetEntry

func (r NotesReplication) GetEntry(source String, destination String, params ...notesReplicationGetEntryParam) (NotesReplicationEntry, error)

type NotesReplicationEntry

type NotesReplicationEntry struct {
	NotesStruct
}

func (NotesReplicationEntry) Destination

func (r NotesReplicationEntry) Destination() (String, error)

--------------------------------- Properties --------------------------------- https://help.hcl-software.com/dom_designer/14.0.0/basic/H_DESTINATION_PROPERTY_RE.html

func (NotesReplicationEntry) Remove

func (r NotesReplicationEntry) Remove() error

--------------------------------- Methods ------------------------------------ https://help.hcl-software.com/dom_designer/14.0.0/basic/H_REMOVE_METHOD_RE.html

type NotesRichTextItem

type NotesRichTextItem struct {
	NotesStruct
}

func (NotesRichTextItem) AddNewLine

func (r NotesRichTextItem) AddNewLine(params ...notesRichTextItemAddNewLineParam) error

func (NotesRichTextItem) AddPageBreak

func (r NotesRichTextItem) AddPageBreak(params ...notesRichTextItemAddPageBreakParam) error

func (NotesRichTextItem) AddTab

func (r NotesRichTextItem) AddTab(params ...notesRichTextItemAddTabParam) error
func (r NotesRichTextItem) AppendDocLink(linkTo notesStruct, comment String, params ...notesRichTextItemAppendDocLinkParam) error

func (NotesRichTextItem) AppendTable

func (r NotesRichTextItem) AppendTable(rows Integer, columns Integer, params ...notesRichTextItemAppendTableParam) error

func (NotesRichTextItem) BeginInsert

func (r NotesRichTextItem) BeginInsert(element notesStruct, params ...notesRichTextItemBeginInsertParam) error

func (NotesRichTextItem) BeginSection

func (r NotesRichTextItem) BeginSection(title String, params ...notesRichTextItemBeginSectionParam) error

func (NotesRichTextItem) EmbedObject

func (r NotesRichTextItem) EmbedObject(embedType NotesEmbeddedObjectEmbedType, class String, source String, params ...notesRichTextItemEmbedObjectParam) (NotesEmbeddedObject, error)

func (NotesRichTextItem) EmbeddedObjects

func (r NotesRichTextItem) EmbeddedObjects() ([]NotesEmbeddedObject, error)

--------------------------------- Properties --------------------------------- https://help.hcl-software.com/dom_designer/10.0.1/basic/H_EMBEDDEDOBJECTS_PROPERTY_RTITEM.html

func (NotesRichTextItem) GetNotesFont

func (r NotesRichTextItem) GetNotesFont(faceName String, params ...notesRichTextItemGetNotesFontParam) (Long, error)

type NotesRichTextNavigator

type NotesRichTextNavigator struct {
	NotesStruct
}

func (NotesRichTextNavigator) Clone

--------------------------------- Properties --------------------------------- --------------------------------- Methods ------------------------------------ https://help.hcl-software.com/dom_designer/14.0.0/basic/H_CLONE_METHOD_RTNAV.html

func (NotesRichTextNavigator) FindFirstString

func (r NotesRichTextNavigator) FindFirstString(target String, params ...notesRichTextNavigatorFindFirstStringParam) (Boolean, error)

func (NotesRichTextNavigator) FindNextElement

func (r NotesRichTextNavigator) FindNextElement(params ...notesRichTextNavigatorFindNextElementParam) (Boolean, error)

func (NotesRichTextNavigator) FindNextString

func (r NotesRichTextNavigator) FindNextString(target String, params ...notesRichTextNavigatorFindNextStringParam) (Boolean, error)

func (NotesRichTextNavigator) FindNthElement

func (r NotesRichTextNavigator) FindNthElement(elementType NotesRichTextNavigatorRtElementType, params ...notesRichTextNavigatorFindNthElementParam) (Boolean, error)

type NotesRichTextNavigatorRtElementType

type NotesRichTextNavigatorRtElementType = Long
const (
	NOTESRICHTEXTNAVIGATOR_RTELEM_TYPE_DOCLINK        NotesRichTextNavigatorRtElementType = 5
	NOTESRICHTEXTNAVIGATOR_RTELEM_TYPE_FILEATTACHMENT NotesRichTextNavigatorRtElementType = 8
	NOTESRICHTEXTNAVIGATOR_RTELEM_TYPE_OLE            NotesRichTextNavigatorRtElementType = 9
	NOTESRICHTEXTNAVIGATOR_RTELEM_TYPE_SECTION        NotesRichTextNavigatorRtElementType = 6
	NOTESRICHTEXTNAVIGATOR_RTELEM_TYPE_TABLE          NotesRichTextNavigatorRtElementType = 1
	NOTESRICHTEXTNAVIGATOR_RTELEM_TYPE_TABLECELL      NotesRichTextNavigatorRtElementType = 7
	NOTESRICHTEXTNAVIGATOR_RTELEM_TYPE_TEXTPARAGRAPH  NotesRichTextNavigatorRtElementType = 4
	NOTESRICHTEXTNAVIGATOR_RTELEM_TYPE_TEXTRUN        NotesRichTextNavigatorRtElementType = 3
)

type NotesRichTextParagraphStyle

type NotesRichTextParagraphStyle struct {
	NotesStruct
}

func (NotesRichTextParagraphStyle) Alignment

func (r NotesRichTextParagraphStyle) Alignment() (Long, error)

--------------------------------- Properties --------------------------------- https://help.hcl-software.com/dom_designer/14.0.0/basic/H_ALIGNMENT_PROPERTY_6587.html

func (NotesRichTextParagraphStyle) ClearAllTabs

func (r NotesRichTextParagraphStyle) ClearAllTabs() error

--------------------------------- Methods ------------------------------------ https://help.hcl-software.com/dom_designer/14.0.0/basic/H_CLEARALLTABS_METHOD_3625.html

func (NotesRichTextParagraphStyle) SetTab

func (r NotesRichTextParagraphStyle) SetTab(position Long, params ...notesRichTextParagraphStyleSetTabParam) error

func (NotesRichTextParagraphStyle) SetTabs

func (r NotesRichTextParagraphStyle) SetTabs(number Integer, startposition Long, params ...notesRichTextParagraphStyleSetTabsParam) error

type NotesRichTextParagraphStyleRulerPosition

type NotesRichTextParagraphStyleRulerPosition = Long
const (
	NOTESRICHTEXTPARAGRAPHSTYLE_RULER_ONE_INCH       NotesRichTextParagraphStyleRulerPosition = 1440
	NOTESRICHTEXTPARAGRAPHSTYLE_RULER_ONE_CENTIMETER NotesRichTextParagraphStyleRulerPosition = 567
)

type NotesRichTextRange

type NotesRichTextRange struct {
	NotesStruct
}

func (NotesRichTextRange) Clone

--------------------------------- Methods ------------------------------------ https://help.hcl-software.com/dom_designer/14.0.0/basic/H_CLONE_METHOD_RTRANGE.html

func (NotesRichTextRange) FindAndReplace

func (r NotesRichTextRange) FindAndReplace(target String, replacement String, params ...notesRichTextRangeFindAndReplaceParam) (Long, error)

func (NotesRichTextRange) Navigator

--------------------------------- Properties --------------------------------- https://help.hcl-software.com/dom_designer/14.0.0/basic/H_NAVIGATOR_PROPERTY_RTRANGE.html

func (NotesRichTextRange) Reset

func (r NotesRichTextRange) Reset(params ...notesRichTextRangeResetParam) error

type NotesRichTextStyle

type NotesRichTextStyle struct {
	NotesStruct
}

func (NotesRichTextStyle) Bold

func (r NotesRichTextStyle) Bold() (Long, error)

--------------------------------- Properties --------------------------------- https://help.hcl-software.com/dom_designer/14.0.0/basic/H_BOLD_PROPERTY.html

type NotesRichTextTab

type NotesRichTextTab struct {
	NotesStruct
}

func (NotesRichTextTab) Clear

func (r NotesRichTextTab) Clear() error

--------------------------------- Methods ------------------------------------ https://help.hcl-software.com/dom_designer/14.0.0/basic/H_CLEAR_METHOD_1029.html

func (NotesRichTextTab) Position

func (r NotesRichTextTab) Position() (Long, error)

--------------------------------- Properties --------------------------------- https://help.hcl-software.com/dom_designer/14.0.0/basic/H_POSITION_PROPERTY_4695.html

type NotesRichTextTabType

type NotesRichTextTabType = Long
const (
	NOTESRICHTEXTTAB_TAB_CENTER  NotesRichTextTabType = 3
	NOTESRICHTEXTTAB_TAB_DECIMAL NotesRichTextTabType = 2
	NOTESRICHTEXTTAB_TAB_LEFT    NotesRichTextTabType = 0
	NOTESRICHTEXTTAB_TAB_RIGHT   NotesRichTextTabType = 1
)

type NotesSession

type NotesSession struct {
	NotesStruct
}

func Initialize

func Initialize(params ...notesSessionInitializeParam) (NotesSession, error)

func InitializeUsingNotesUserName

func InitializeUsingNotesUserName(name String, params ...notesSessionInitializeUsingNotesUserNameParam) (NotesSession, error)

func (NotesSession) AddressBooks

func (s NotesSession) AddressBooks() ([]NotesDatabase, error)

--------------------------------- Properties --------------------------------- https://help.hcl-software.com/dom_designer/14.0.0/basic/H_ADDRESSBOOKS_PROPERTY.html

func (NotesSession) CreateAdministrationProcess

func (s NotesSession) CreateAdministrationProcess(server String) (NotesAdministrationProcess, error)

--------------------------------- Methods ------------------------------------ https://help.hcl-software.com/dom_designer/14.0.0/basic/H_CREATEADMINISTRATIONPROCESS_METHOD_SESSION.html

func (NotesSession) CreateName

func (s NotesSession) CreateName(name String, params ...notesSessionCreateNameParam) (NotesName, error)

func (NotesSession) FreeResourceSearch

func (s NotesSession) FreeResourceSearch(Start NotesDateTime, End NotesDateTime, Site String, Type Integer, params ...notesSessionFreeResourceSearchParam) ([]String, error)

func (NotesSession) FreeTimeSearch

func (s NotesSession) FreeTimeSearch(window NotesDateRange, duration Integer, names []String, params ...notesSessionFreeTimeSearchParam) (NotesDateRange, error)

func (NotesSession) GetDatabase

func (s NotesSession) GetDatabase(server String, dbfile String, params ...notesSessionGetDatabaseParam) (NotesDatabase, error)

func (NotesSession) GetDirectory

func (s NotesSession) GetDirectory(params ...notesSessionGetDirectoryParam) (NotesDirectory, error)

func (NotesSession) GetEnvironmentString

func (s NotesSession) GetEnvironmentString(name String, params ...notesSessionGetEnvironmentStringParam) (String, error)

func (NotesSession) GetEnvironmentValue

func (s NotesSession) GetEnvironmentValue(name String, params ...notesSessionGetEnvironmentValueParam) (any, error)

func (NotesSession) GetUserPolicySettings

func (s NotesSession) GetUserPolicySettings(server String, name String, policyType NotesSessionPolicy, params ...notesSessionGetUserPolicySettingsParam) (NotesDocument, error)

func (NotesSession) ResetUserPassword

func (s NotesSession) ResetUserPassword(servername String, username String, password String, params ...notesSessionResetUserPasswordParam) error

func (NotesSession) SetEnvironmentVar

func (s NotesSession) SetEnvironmentVar(name String, valueV any, params ...notesSessionSetEnvironmentVarParam) error

type NotesSessionPolicy

type NotesSessionPolicy = Long
const (
	NOTESSESSION_POLICYSETTINGS_ARCHIVE      NotesSessionPolicy = 2
	NOTESSESSION_POLICYSETTINGS_DESKTOP      NotesSessionPolicy = 4
	NOTESSESSION_POLICYSETTINGS_REGISTRATION NotesSessionPolicy = 0
	NOTESSESSION_POLICYSETTINGS_SECURITY     NotesSessionPolicy = 3
	NOTESSESSION_POLICYSETTINGS_SETUP        NotesSessionPolicy = 1
)

type NotesStream

type NotesStream struct {
	NotesStruct
}

func (NotesStream) Bytes

func (s NotesStream) Bytes() (Long, error)

--------------------------------- Properties --------------------------------- https://help.hcl-software.com/dom_designer/14.0.0/basic/H_BYTES_PROPERTY_STREAM.html

func (NotesStream) Close

func (s NotesStream) Close() error

--------------------------------- Methods ------------------------------------ https://help.hcl-software.com/dom_designer/14.0.0/basic/H_CLOSE_METHOD_STREAM.html

func (NotesStream) Open

func (s NotesStream) Open(pathname String, params ...notesStreamOpenParam) (Boolean, error)

func (NotesStream) Read

func (s NotesStream) Read(params ...notesStreamReadParam) ([]Byte, error)

func (NotesStream) ReadText

func (s NotesStream) ReadText(params ...notesStreamReadTextParam) (String, error)

func (NotesStream) WriteText

func (s NotesStream) WriteText(text String, params ...notesStreamWriteTextParam) (Long, error)

type NotesStruct

type NotesStruct struct {
	// contains filtered or unexported fields
}

func (NotesStruct) IsReady

func (s NotesStruct) IsReady() bool

func (NotesStruct) Release

func (s NotesStruct) Release()

type NotesUserID

type NotesUserID struct {
	NotesStruct
}

func (NotesUserID) GetEncryptionKeys

func (u NotesUserID) GetEncryptionKeys() ([]String, error)

--------------------------------- Methods ------------------------------------ https://help.hcl-software.com/dom_designer/14.0.0/basic/H_GETENCRYPTIONKEYS_USERID.html

type NotesView

type NotesView struct {
	NotesStruct
}

func (NotesView) Aliases

func (v NotesView) Aliases() ([]String, error)

--------------------------------- Properties --------------------------------- https://help.hcl-software.com/dom_designer/14.0.0/basic/H_ALIASES_PROPERTY_VIEW.html

func (NotesView) Clear

func (v NotesView) Clear() error

--------------------------------- Methods ------------------------------------ https://help.hcl-software.com/dom_designer/14.0.0/basic/H_CLEAR_METHOD_VIEW.html

func (NotesView) CopyColumn

func (v NotesView) CopyColumn(sourceColumn Integer, params ...notesViewCopyColumnParam) (NotesViewColumn, error)

TODO: Handle different types.

func (NotesView) CreateColumn

func (v NotesView) CreateColumn(params ...notesViewCreateColumnParam) (NotesViewColumn, error)

func (NotesView) CreateViewNav

func (v NotesView) CreateViewNav(params ...notesViewCreateViewNavParam) (NotesViewNavigator, error)

func (NotesView) CreateViewNavFrom

func (v NotesView) CreateViewNavFrom(navigatorObject Variant, params ...notesViewCreateViewNavFromParam) (NotesViewNavigator, error)

func (NotesView) CreateViewNavFromAllUnread

func (v NotesView) CreateViewNavFromAllUnread(params ...notesViewCreateViewNavFromAllUnreadParam) (NotesViewNavigator, error)

func (NotesView) CreateViewNavFromCategory

func (v NotesView) CreateViewNavFromCategory(category String, params ...notesViewCreateViewNavFromCategoryParam) (NotesViewNavigator, error)

func (NotesView) CreateViewNavFromChildren

func (v NotesView) CreateViewNavFromChildren(navigatorObject Variant, params ...notesViewCreateViewNavFromChildrenParam) (NotesViewNavigator, error)

func (NotesView) CreateViewNavFromDescendants

func (v NotesView) CreateViewNavFromDescendants(navigatorObject Variant, params ...notesViewCreateViewNavFromDescendantsParam) (NotesViewNavigator, error)

func (NotesView) CreateViewNavMaxLevel

func (v NotesView) CreateViewNavMaxLevel(level Long, params ...notesViewCreateViewNavMaxLevelParam) (NotesViewNavigator, error)

func (NotesView) GetAllDocumentsByKey

func (v NotesView) GetAllDocumentsByKey(key any, params ...notesViewGetAllDocumentsByKeyParam) (NotesDocumentCollection, error)

func (NotesView) GetAllEntriesByKey

func (v NotesView) GetAllEntriesByKey(key any, params ...notesViewGetAllEntriesByKeyParam) (NotesViewEntryCollection, error)

func (NotesView) GetAllReadEntries

func (v NotesView) GetAllReadEntries(params ...notesViewGetAllReadEntriesParam) (NotesViewEntryCollection, error)

func (NotesView) GetAllUnreadEntries

func (v NotesView) GetAllUnreadEntries(params ...notesViewGetAllUnreadEntriesParam) (NotesViewEntryCollection, error)

func (NotesView) GetDocumentByKey

func (v NotesView) GetDocumentByKey(key any, params ...notesViewGetDocumentByKeyParam) (NotesDocument, error)

func (NotesView) GetEntryByKey

func (v NotesView) GetEntryByKey(key any, params ...notesViewGetEntryByKeyParam) (NotesViewEntry, error)

func (NotesView) Lock

func (v NotesView) Lock(params ...notesViewLockParam) (Boolean, error)

func (NotesView) LockProvisional

func (v NotesView) LockProvisional(params ...notesViewLockProvisionalParam) (Boolean, error)

func (NotesView) MarkAllRead

func (v NotesView) MarkAllRead(params ...notesViewMarkAllReadParam) error

func (NotesView) MarkAllUnread

func (v NotesView) MarkAllUnread(params ...notesViewMarkAllUnreadParam) error

func (NotesView) RemoveColumn

func (v NotesView) RemoveColumn(params ...notesViewRemoveColumnParam) error

func (NotesView) ResortView

func (v NotesView) ResortView(params ...notesViewResortViewParam) error

type NotesViewColumn

type NotesViewColumn struct {
	NotesStruct
}

func (NotesViewColumn) Alignment

func (c NotesViewColumn) Alignment() (Integer, error)

--------------------------------- Properties --------------------------------- https://help.hcl-software.com/dom_designer/14.0.0/basic/H_ALIGNMENT_PROPERTY_2919_ABOUT.html

type NotesViewEntry

type NotesViewEntry struct {
	NotesStruct
}

func (NotesViewEntry) ChildCount

func (v NotesViewEntry) ChildCount() (Long, error)

--------------------------------- Properties --------------------------------- https://help.hcl-software.com/dom_designer/14.0.0/basic/H_CHILDCOUNT_PROPERTY_8963.html

func (NotesViewEntry) GetPosition

func (v NotesViewEntry) GetPosition(separator String) (String, error)

--------------------------------- Methods ------------------------------------ https://help.hcl-software.com/dom_designer/14.0.0/basic/H_GETPOSITION_METHOD_8121.html

func (NotesViewEntry) GetRead

func (v NotesViewEntry) GetRead(params ...notesViewEntryGetReadParam) (Boolean, error)

type NotesViewEntryCollection

type NotesViewEntryCollection struct {
	NotesStruct
}

func (NotesViewEntryCollection) AddEntry

func (v NotesViewEntryCollection) AddEntry(addentry NotesViewEntry, params ...notesViewEntryCollectionAddEntryParam) error

func (NotesViewEntryCollection) Count

func (v NotesViewEntryCollection) Count() (Long, error)

--------------------------------- Properties --------------------------------- https://help.hcl-software.com/dom_designer/14.0.0/basic/H_COUNT_PROPERTY_8365.html

func (NotesViewEntryCollection) Intersect

func (v NotesViewEntryCollection) Intersect(inputNotes Integer, params ...notesViewEntryCollectionIntersectParam) error

func (NotesViewEntryCollection) MarkAllRead

func (v NotesViewEntryCollection) MarkAllRead(params ...notesViewEntryCollectionMarkAllReadParam) error

func (NotesViewEntryCollection) MarkAllUnread

func (v NotesViewEntryCollection) MarkAllUnread(params ...notesViewEntryCollectionMarkAllUnreadParam) error

func (NotesViewEntryCollection) PutAllInFolder

func (v NotesViewEntryCollection) PutAllInFolder(foldername String, params ...notesViewEntryCollectionPutAllInFolderParam) error

func (NotesViewEntryCollection) Subtract

func (v NotesViewEntryCollection) Subtract(inputNotes Long, params ...notesViewEntryCollectionSubtractParam) error

type NotesViewNavigator

type NotesViewNavigator struct {
	NotesStruct
}

func (NotesViewNavigator) CacheSize

func (v NotesViewNavigator) CacheSize() (Long, error)

--------------------------------- Properties --------------------------------- https://help.hcl-software.com/dom_designer/14.0.0/basic/H_CACHESIZE_PROPERTY_NOTESVIEWNAVIGATOR.html

func (NotesViewNavigator) GetChild

--------------------------------- Methods ------------------------------------ https://help.hcl-software.com/dom_designer/14.0.0/basic/H_GETCHILD_METHOD_VIEWNAV.html

func (NotesViewNavigator) MarkAllRead

func (v NotesViewNavigator) MarkAllRead(params ...notesViewNavigatorMarkAllReadParam) error

func (NotesViewNavigator) MarkAllUnread

func (v NotesViewNavigator) MarkAllUnread(params ...notesViewNavigatorMarkAllUnreadParam) error

type Single

type Single = float32

type String

type String = string

type Time

type Time = time.Time

type Variant

type Variant = uint128.Uint128

Directories

Path Synopsis
internal
com
test

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL