Defines an object for Users in Confluence.
New-Object -TypeName ConfluencePS.User [-Property @{}]
[ConfluencePS.User]@{}
fixThe User
is an object that describes users in Confluence.
The following classes use User
for their properties:
This class does not have a constructor.
The UserKey is the identifier of a User
used by the Confluence server internally.
This value can’t be changed and is assigned by the server.
It is recommended to use UserName
as identifier when using this object.
Type: String
Required: True
Default value: None
The UserName is the “public” identifier of a User
.
This value can be changed by an administrator.
Type: String
Required: True
Default value: None
The DisplayName is the chosen name that is display for the User
.
This value can be changed by the user himself.
Type: String
Required: True
Default value: None
The ProfilePicture contains the information about the User
s profile picture / avatar.
This value can be changed by the user himself.
Type: ConfluencePS.Icon
Required: True
Default value: None
The method for casting an object of this class to string is overwritten.
When cast to string, this will return the DisplayName
property’s value.