Overview of AcreIntrusionUserInfo goes here.
Item -> BaseInfo -> AcreIntrusionUserInfo
Field | Type | Inherited from | Description |
---|---|---|---|
Href | String | Item | Gets or sets the Href value |
CommonName | String | BaseInfo | Gets or sets the CommonName value |
ConcurrencyVersion | Nullable<Int64> | BaseInfo | Gets or sets the ConcurrencyVersion value |
InFolderHref | String | BaseInfo | Gets or sets the InFolderHref value |
InFolderKey | String | BaseInfo | Gets or sets the InFolderKey value |
IsGlobal | Boolean | BaseInfo | Gets or sets the IsGlobal value |
Key | String | BaseInfo | Gets or sets the Key value |
Links | List<Link> | BaseInfo | Gets or sets the Links value |
Metadata | MetadataItem[] | BaseInfo | Gets or sets the Metadata value |
Monikers | MonikerItem[] | BaseInfo | Gets or sets the Monikers value |
Notes | NoteInfo[] | BaseInfo | Gets or sets the Notes value |
ObjectLinks | ObjectLinkItem[] | BaseInfo | Gets or sets the ObjectLinks value |
Tags | String[] | BaseInfo | Gets or sets the Tags value |
CardAssignmentKey | String | AcreIntrusionUserInfo | Gets or sets the CardAssignmentKey value |
GlobalId | Int32 | AcreIntrusionUserInfo | Gets or sets the GlobalId value |
IsCustodianCard | Boolean | AcreIntrusionUserInfo | Gets or sets the IsCustodianCard value |
IsEscortCard | Boolean | AcreIntrusionUserInfo | Gets or sets the IsEscortCard value |
IsPriorityCard | Boolean | AcreIntrusionUserInfo | Gets or sets the IsPriorityCard value |
IsVoidCard | Boolean | AcreIntrusionUserInfo | Gets or sets the IsVoidCard value |
UserAttribute | AcreIntrusionUserAttributeState | AcreIntrusionUserInfo | Gets or sets the UserAttribute value |
{
"Href" : "String",
"CommonName" : "String",
"ConcurrencyVersion" : "Nullable\<Int64\>",
"InFolderHref" : "String",
"InFolderKey" : "String",
"IsGlobal" : "Boolean",
"Key" : "String",
"Links" : "List\<[Link](/object-model/link)\>",
"Metadata" : "[MetadataItem](/object-model/metadataitem)[]",
"Monikers" : "[MonikerItem](/object-model/monikeritem)[]",
"Notes" : "[NoteInfo](/object-model/noteinfo)[]",
"ObjectLinks" : "[ObjectLinkItem](/object-model/objectlinkitem)[]",
"Tags" : "String[]",
"CardAssignmentKey" : "String",
"GlobalId" : "Int32",
"IsCustodianCard" : "Boolean",
"IsEscortCard" : "Boolean",
"IsPriorityCard" : "Boolean",
"IsVoidCard" : "Boolean",
"UserAttribute" : "[AcreIntrusionUserAttributeState](/object-model/acreintrusionuserattributestate)"
}
Example in C#
// Returns: AcreIntrusionUserInfo
var acreIntrusionUserInfo = await client.AddAcreIntrusionUserAsync(FolderInfo folder, AcreIntrusionUserInfo AcreIntrusionUser, PersonInfo person);
Example in C#
// Returns: nothing
await client.DeleteAcreIntrusionUserAsync(AcreIntrusionUserInfo AcreIntrusionUser);
Example in C#
// Returns: AcreIntrusionUserInfo
var acreIntrusionUserInfo = await client.GetAcreIntrusionUserByPersonIdAsync(FolderInfo folder, String PersonId);
Example in C#
// Returns: IEnumerable<AcreIntrusionUserInfo>
var acreIntrusionUserInfo = await client.GetAcreIntrusionUsersAsync(FolderInfo folder);
Example in C#
// Returns: nothing
await client.UpdateAcreIntrusionUserAsync(AcreIntrusionUserInfo AcreIntrusionUser);