AcreIntrusionAreaInfo

Overview of AcreIntrusionAreaInfo goes here.

AcreIntrusionAreaInfo Properties

Item -> BaseInfo -> AcreIntrusionPeripheralInfo -> AcreIntrusionAreaInfo

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
AutosetFailReason String AcreIntrusionAreaInfo Gets or sets the AutosetFailReason value
AutosetFailTime Nullable<DateTime> AcreIntrusionAreaInfo Gets or sets the AutosetFailTime value
DuressLocation Int32 AcreIntrusionAreaInfo Gets or sets the DuressLocation value
DuressUser Int32 AcreIntrusionAreaInfo Gets or sets the DuressUser value
FailToSetReason String AcreIntrusionAreaInfo Gets or sets the FailToSetReason value
LastAlarm Nullable<DateTime> AcreIntrusionAreaInfo Gets or sets the LastAlarm value
LastAlarmAbort Nullable<DateTime> AcreIntrusionAreaInfo Gets or sets the LastAlarmAbort value
LastDuressTime Nullable<DateTime> AcreIntrusionAreaInfo Gets or sets the LastDuressTime value
LastEarlyToSet Nullable<DateTime> AcreIntrusionAreaInfo Gets or sets the LastEarlyToSet value
LastEarlyToUnset Nullable<DateTime> AcreIntrusionAreaInfo Gets or sets the LastEarlyToUnset value
LastLateToSet Nullable<DateTime> AcreIntrusionAreaInfo Gets or sets the LastLateToSet value
LastLateToUnset Nullable<DateTime> AcreIntrusionAreaInfo Gets or sets the LastLateToUnset value
LastSetTime Nullable<DateTime> AcreIntrusionAreaInfo Gets or sets the LastSetTime value
LastSetUserId Int32 AcreIntrusionAreaInfo Gets or sets the LastSetUserId value
LastSetUserName String AcreIntrusionAreaInfo Gets or sets the LastSetUserName value
LastUnsetTime Nullable<DateTime> AcreIntrusionAreaInfo Gets or sets the LastUnsetTime value
LastUnsetUserId Int32 AcreIntrusionAreaInfo Gets or sets the LastUnsetUserId value
LastUnsetUserName String AcreIntrusionAreaInfo Gets or sets the LastUnsetUserName value
Mode AcreIntrusionAreaMode AcreIntrusionAreaInfo Gets or sets the Mode value
NotReadySet Boolean AcreIntrusionAreaInfo Gets or sets the NotReadySet value
NotReadyUnset Boolean AcreIntrusionAreaInfo Gets or sets the NotReadyUnset value
PartsetAEnable Boolean AcreIntrusionAreaInfo Gets or sets the PartsetAEnable value
PartsetAName String AcreIntrusionAreaInfo Gets or sets the PartsetAName value
PartsetBEnable Boolean AcreIntrusionAreaInfo Gets or sets the PartsetBEnable value
PartsetBName String AcreIntrusionAreaInfo Gets or sets the PartsetBName value

JSON Structure of AcreIntrusionAreaInfo

{
   "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",
   "AutosetFailReason"	:	"String",
   "AutosetFailTime"	:	"Nullable\<DateTime\>",
   "DuressLocation"	:	"Int32",
   "DuressUser"	:	"Int32",
   "FailToSetReason"	:	"String",
   "LastAlarm"	:	"Nullable\<DateTime\>",
   "LastAlarmAbort"	:	"Nullable\<DateTime\>",
   "LastDuressTime"	:	"Nullable\<DateTime\>",
   "LastEarlyToSet"	:	"Nullable\<DateTime\>",
   "LastEarlyToUnset"	:	"Nullable\<DateTime\>",
   "LastLateToSet"	:	"Nullable\<DateTime\>",
   "LastLateToUnset"	:	"Nullable\<DateTime\>",
   "LastSetTime"	:	"Nullable\<DateTime\>",
   "LastSetUserId"	:	"Int32",
   "LastSetUserName"	:	"String",
   "LastUnsetTime"	:	"Nullable\<DateTime\>",
   "LastUnsetUserId"	:	"Int32",
   "LastUnsetUserName"	:	"String",
   "Mode"	:	"[AcreIntrusionAreaMode](/object-model/acreintrusionareamode)",
   "NotReadySet"	:	"Boolean",
   "NotReadyUnset"	:	"Boolean",
   "PartsetAEnable"	:	"Boolean",
   "PartsetAName"	:	"String",
   "PartsetBEnable"	:	"Boolean",
   "PartsetBName"	:	"String"
}

Add Acre Intrusion Area Async

Example in C#

// Returns: AcreIntrusionAreaInfo
var acreIntrusionAreaInfo = await client.AddAcreIntrusionAreaAsync(AcreIntrusionPanelInfo AcreIntrusionPanel, AcreIntrusionAreaInfo AcreIntrusionArea);

Delete Acre Intrusion Area Async

Example in C#

// Returns: nothing
await client.DeleteAcreIntrusionAreaAsync(AcreIntrusionAreaInfo AcreIntrusionArea);

Get Acre Intrusion Areas Async

Example in C#

// Returns: IEnumerable<AcreIntrusionAreaInfo>
var acreIntrusionAreaInfo = await client.GetAcreIntrusionAreasAsync(AcreIntrusionPanelInfo AcreIntrusionPanel);

Update Acre Intrusion Area Async

Example in C#

// Returns: nothing
await client.UpdateAcreIntrusionAreaAsync(AcreIntrusionAreaInfo AcreIntrusionArea);