-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnotesuserid.go
27 lines (21 loc) · 882 Bytes
/
notesuserid.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/* https://help.hcl-software.com/dom_designer/14.0.0/basic/H_NOTESUSERID_CLASS.html */
package domigo
import (
ole "github.com/go-ole/go-ole"
)
type NotesUserID struct {
NotesStruct
}
func newNotesUserID(dispatchPtr *ole.IDispatch) NotesUserID {
return NotesUserID{newNotesStruct(dispatchPtr)}
}
/* --------------------------------- Properties --------------------------------- */
/* --------------------------------- Methods ------------------------------------ */
/* https://help.hcl-software.com/dom_designer/14.0.0/basic/H_GETENCRYPTIONKEYS_USERID.html */
func (u NotesUserID) GetEncryptionKeys() ([]String, error) {
return callComArrayMethod[String](u, "GetEncryptionKeys")
}
/* https://help.hcl-software.com/dom_designer/14.0.0/basic/H_GETUSERNAME_USERID.html */
func (u NotesUserID) GetUserName() (String, error) {
return callComMethod[String](u, "GetUserName")
}