Class NSCredentialUser
Information about a users credentials in a foreign system that can be bound to a SuperOffice user (associate)
Syntax
Constructors
NSCredentialUser()
Initializes a new instance of the NSCredentialUser class.
Declaration
NSCredentialUser
Methods
GetCanCreatePerson()
Information about a users credentials in a foreign system that can be bound to a SuperOffice user (associate)
Declaration
Bool GetCanCreatePerson()
Returns
Type | Description |
---|---|
Bool |
Examples
NSCredentialUser thing;
Bool canCreatePerson = thing.GetCanCreatePerson();
GetColumns()
Information about a users credentials in a foreign system that can be bound to a SuperOffice user (associate)
Declaration
String[] GetColumns()
Returns
Type | Description |
---|---|
String[] | Columns, matching CredentialUsers.Headings. |
Examples
NSCredentialUser thing;
String[] columns = thing.GetColumns();
GetDisplayValue()
Information about a users credentials in a foreign system that can be bound to a SuperOffice user (associate)
Declaration
String GetDisplayValue()
Returns
Type | Description |
---|---|
String | Display value of the user. |
Remarks
This value needs to be applied to the Credential.DisplayValue field.
Examples
NSCredentialUser thing;
String displayValue = thing.GetDisplayValue();
GetValue()
Information about a users credentials in a foreign system that can be bound to a SuperOffice user (associate)
Declaration
String GetValue()
Returns
Type | Description |
---|---|
String | Identification of user in the foreign system. |
Remarks
This value needs to be applied to the Credential.Value field
Examples
NSCredentialUser thing;
String value = thing.GetValue();
SetCanCreatePerson(Bool)
Information about a users credentials in a foreign system that can be bound to a SuperOffice user (associate)
Declaration
Void SetCanCreatePerson(Bool canCreatePerson)
Parameters
Type | Name | Description |
---|---|---|
Bool | canCreatePerson |
Returns
Type | Description |
---|---|
Void |
Examples
NSCredentialUser thing;
Bool canCreatePerson;
thing.SetCanCreatePerson(canCreatePerson);
SetColumns(String[])
Information about a users credentials in a foreign system that can be bound to a SuperOffice user (associate)
Declaration
Void SetColumns(String[] columns)
Parameters
Type | Name | Description |
---|---|---|
String[] | columns | Columns, matching CredentialUsers.Headings. |
Returns
Type | Description |
---|---|
Void |
Examples
NSCredentialUser thing;
String[] columns;
thing.SetColumns(columns);
SetDisplayValue(String)
Information about a users credentials in a foreign system that can be bound to a SuperOffice user (associate)
Declaration
Void SetDisplayValue(String displayValue)
Parameters
Type | Name | Description |
---|---|---|
String | displayValue | Display value of the user. |
Returns
Type | Description |
---|---|
Void |
Remarks
This value needs to be applied to the Credential.DisplayValue field.
Examples
NSCredentialUser thing;
String displayValue;
thing.SetDisplayValue(displayValue);
SetValue(String)
Information about a users credentials in a foreign system that can be bound to a SuperOffice user (associate)
Declaration
Void SetValue(String value)
Parameters
Type | Name | Description |
---|---|---|
String | value | Identification of user in the foreign system. |
Returns
Type | Description |
---|---|
Void |
Remarks
This value needs to be applied to the Credential.Value field
Examples
NSCredentialUser thing;
String value;
thing.SetValue(value);