AcreIntrusionDoorInfo

Overview of AcreIntrusionDoorInfo goes here.

AcreIntrusionDoorInfo Properties

Item -> BaseInfo -> AcreIntrusionPeripheralInfo -> AcreIntrusionDoorInfo

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
AcreIntrusionId Int32 AcreIntrusionPeripheralInfo Gets or sets the AcreIntrusionId value
DPSInput AcreIntrusionDoorDPSInput AcreIntrusionDoorInfo Gets or sets the DPSInput value
DRSInput AcreIntrusionDoorDRSInput AcreIntrusionDoorInfo Gets or sets the DRSInput value
EntryDeniedOutput Boolean AcreIntrusionDoorInfo Gets or sets the EntryDeniedOutput value
EntryExit Boolean AcreIntrusionDoorInfo Gets or sets the EntryExit value
ExitDeniedOutput Boolean AcreIntrusionDoorInfo Gets or sets the ExitDeniedOutput value
ForcedOutput Boolean AcreIntrusionDoorInfo Gets or sets the ForcedOutput value
InterlockedOutput Boolean AcreIntrusionDoorInfo Gets or sets the InterlockedOutput value
LeftOpenOutput Boolean AcreIntrusionDoorInfo Gets or sets the LeftOpenOutput value
LockAllowed Boolean AcreIntrusionDoorInfo Gets or sets the LockAllowed value
Mode AcreIntrusionDoorMode AcreIntrusionDoorInfo Gets or sets the Mode value
MomentaryAllowed Boolean AcreIntrusionDoorInfo Gets or sets the MomentaryAllowed value
NormalAllowed Boolean AcreIntrusionDoorInfo Gets or sets the NormalAllowed value
OpenTooLongOutput Boolean AcreIntrusionDoorInfo Gets or sets the OpenTooLongOutput value
Reader1Format AcreIntrusionDoorReaderFormat AcreIntrusionDoorInfo Gets or sets the Reader1Format value
Reader2Format AcreIntrusionDoorReaderFormat AcreIntrusionDoorInfo Gets or sets the Reader2Format value
Status AcreIntrusionDoorStatus AcreIntrusionDoorInfo Gets or sets the Status value
UnlockAllowed Boolean AcreIntrusionDoorInfo Gets or sets the UnlockAllowed value

JSON Structure of AcreIntrusionDoorInfo

{
   "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[]",
   "AcreIntrusionId"	:	"Int32",
   "DPSInput"	:	"[AcreIntrusionDoorDPSInput](/object-model/acreintrusiondoordpsinput)",
   "DRSInput"	:	"[AcreIntrusionDoorDRSInput](/object-model/acreintrusiondoordrsinput)",
   "EntryDeniedOutput"	:	"Boolean",
   "EntryExit"	:	"Boolean",
   "ExitDeniedOutput"	:	"Boolean",
   "ForcedOutput"	:	"Boolean",
   "InterlockedOutput"	:	"Boolean",
   "LeftOpenOutput"	:	"Boolean",
   "LockAllowed"	:	"Boolean",
   "Mode"	:	"[AcreIntrusionDoorMode](/object-model/acreintrusiondoormode)",
   "MomentaryAllowed"	:	"Boolean",
   "NormalAllowed"	:	"Boolean",
   "OpenTooLongOutput"	:	"Boolean",
   "Reader1Format"	:	"[AcreIntrusionDoorReaderFormat](/object-model/acreintrusiondoorreaderformat)",
   "Reader2Format"	:	"[AcreIntrusionDoorReaderFormat](/object-model/acreintrusiondoorreaderformat)",
   "Status"	:	"[AcreIntrusionDoorStatus](/object-model/acreintrusiondoorstatus)",
   "UnlockAllowed"	:	"Boolean"
}

Add Acre Intrusion Door Async

Example in C#

// Returns: AcreIntrusionDoorInfo
var acreIntrusionDoorInfo = await client.AddAcreIntrusionDoorAsync(AcreIntrusionPanelInfo AcreIntrusionPanel, String areaObjectId, String zoneObjectId, AcreIntrusionDoorInfo AcreIntrusionDoor);

Delete Acre Intrusion Door Async

Example in C#

// Returns: nothing
await client.DeleteAcreIntrusionDoorAsync(AcreIntrusionDoorInfo AcreIntrusionDoor);

Get Acre Intrusion Doors Async

Example in C#

// Returns: IEnumerable<AcreIntrusionDoorInfo>
var acreIntrusionDoorInfo = await client.GetAcreIntrusionDoorsAsync(AcreIntrusionPanelInfo AcreIntrusionPanel);

Update Acre Intrusion Door Async

Example in C#

// Returns: nothing
await client.UpdateAcreIntrusionDoorAsync(AcreIntrusionDoorInfo AcreIntrusionDoor);