Class PolicyArray
Data class for passing an array of policies to and from a policy store. See Sections 3.3.1.2.1 and E.1.1 of NENA-STA-010.3.
Inherited Members
Namespace: PolicyStore
Assembly: Ng911Lib.dll
Syntax
public class PolicyArray
Constructors
| Edit this page View SourcePolicyArray()
Default constructor
Declaration
public PolicyArray()
Properties
| Edit this page View Sourcecount
Number of items in the policies array. Required.
Declaration
public int count { get; set; }
Property Value
Type | Description |
---|---|
int |
policies
Array of Policy objects, each in JWS format (JWS using flattened JSON serialization). Required.
Declaration
public List<I3Jws> policies { get; set; }
Property Value
Type | Description |
---|---|
List<I3Jws> |
totalCount
Total number of policies. Required.
Declaration
public int totalCount { get; set; }
Property Value
Type | Description |
---|---|
int |