CardholderGroupInfo

Overview of CardholderGroupInfo goes here.

CardholderGroupInfo Properties

Item -> BaseInfo -> CardholderGroupInfo

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
AccessRights CardholderGroupAccessRightItem[] CardholderGroupInfo Gets or sets the AccessRights value
AntiPassbackTime Int32 CardholderGroupInfo Gets or sets the AntiPassbackTime value
GroupPinEncrypted String CardholderGroupInfo Gets or sets the GroupPinEncrypted value
IsAuxEnabled Boolean CardholderGroupInfo Gets or sets the IsAuxEnabled value
IsEnabled Boolean CardholderGroupInfo Gets or sets the IsEnabled value
IsGroupPinEnabled Boolean CardholderGroupInfo Gets or sets the IsGroupPinEnabled value
IsLockBypassEnabled Boolean CardholderGroupInfo Gets or sets the IsLockBypassEnabled value
IsLockdownBypassEnabled Boolean CardholderGroupInfo Gets or sets the IsLockdownBypassEnabled value
IsLockdownClearEnabled Boolean CardholderGroupInfo Gets or sets the IsLockdownClearEnabled value
IsLockdownEnabled Boolean CardholderGroupInfo Gets or sets the IsLockdownEnabled value
IsOp2Enabled Boolean CardholderGroupInfo Gets or sets the IsOp2Enabled value
IsOp3Enabled Boolean CardholderGroupInfo Gets or sets the IsOp3Enabled value
IsToggleRelayEnabled Boolean CardholderGroupInfo Gets or sets the IsToggleRelayEnabled value
IsTrackingBlockReEntryEnabled Boolean CardholderGroupInfo Gets or sets the IsTrackingBlockReEntryEnabled value
IsTrackingBypassEnabled Boolean CardholderGroupInfo Gets or sets the IsTrackingBypassEnabled value
PIN Nullable<Int64> CardholderGroupInfo Gets or sets the PIN value

JSON Structure of CardholderGroupInfo

{
   "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[]",
   "AccessRights"	:	"[CardholderGroupAccessRightItem](/object-model/cardholdergroupaccessrightitem)[]",
   "AntiPassbackTime"	:	"Int32",
   "GroupPinEncrypted"	:	"String",
   "IsAuxEnabled"	:	"Boolean",
   "IsEnabled"	:	"Boolean",
   "IsGroupPinEnabled"	:	"Boolean",
   "IsLockBypassEnabled"	:	"Boolean",
   "IsLockdownBypassEnabled"	:	"Boolean",
   "IsLockdownClearEnabled"	:	"Boolean",
   "IsLockdownEnabled"	:	"Boolean",
   "IsOp2Enabled"	:	"Boolean",
   "IsOp3Enabled"	:	"Boolean",
   "IsToggleRelayEnabled"	:	"Boolean",
   "IsTrackingBlockReEntryEnabled"	:	"Boolean",
   "IsTrackingBypassEnabled"	:	"Boolean",
   "PIN"	:	"Nullable\<Int64\>"
}

Add Cardholder Group Async

Example in C#

// Returns: CardholderGroupInfo
var cardholderGroupInfo = await client.AddCardholderGroupAsync(FolderInfo folder, CardholderGroupInfo item);

Delete Cardholder Group Async

Example in C#

// Returns: nothing
await client.DeleteCardholderGroupAsync(CardholderGroupInfo item);

Get Cardholder Groups Async

Example in C#

// Returns: IEnumerable<CardholderGroupInfo>
var cardholderGroupInfo = await client.GetCardholderGroupsAsync(FolderInfo folder);

Update Cardholder Group Async

Example in C#

// Returns: nothing
await client.UpdateCardholderGroupAsync(CardholderGroupInfo item);