Class PolicyEnum
Data class that contains basic information about a policy for enumeration purposes. See Sections 3.3.1.3.1 and E.1.1 of NENA-STA-010.3.
Inherited Members
Namespace: PolicyStore
Assembly: Ng911Lib.dll
Syntax
public class PolicyEnum
Constructors
| Edit this page View SourcePolicyEnum()
Default constructor.
Declaration
public PolicyEnum()
Properties
| Edit this page View SourcepolicyExpirationTime
Policy is not valid after this time. Optional. If not specified then this policy never expires. Must be in NENA Timestamp format specified in Section 2.3 NENA-STA-010.3. Optional.
Declaration
public string policyExpirationTime { get; set; }
Property Value
Type | Description |
---|---|
string |
policyId
For “OtherRoutePolicy”, this is an arbitrary identifier for the policy. Conditional, must not be specified unless policyType is OtherRoutePolicy.
Declaration
public string policyId { get; set; }
Property Value
Type | Description |
---|---|
string |
policyLastModificationTime
Date/Time policy was last modified. Must be in NENA Timestamp format specified in Section 2.3 NENA-STA-010.3. CONDITIONAL, MUST be provided on retrieval, ignored on store.
Declaration
public string policyLastModificationTime { get; set; }
Property Value
Type | Description |
---|---|
string |
policyOwner
ID of the agency or service whose policy is requested. MUST be a FQDN or URI that contains a FQDN. Required.
Declaration
public string policyOwner { get; set; }
Property Value
Type | Description |
---|---|
string |
policyQueueName
For “OriginationRoutePolicy” or “NormalNextHopRoutePolicy”, this is the policyQueueName. CONDITIONAL, MUST NOT be specified unless policyType is “OriginationRoutePolicy” or “NormalNextHopRoutePolicy”.
Declaration
public string policyQueueName { get; set; }
Property Value
Type | Description |
---|---|
string |
policyType
Type of the policy. Restricted to the values in the Policy Types registry. See Section 10.33 of NENA-STA-010.3. Required.
Declaration
public string policyType { get; set; }
Property Value
Type | Description |
---|---|
string |