Class DiscrepancyResolution
Data class used by a discrepancy reporting service for sending the resolution to a discrepancy report. See Sections 3.7.2 and E.2.1 of NENA-STA-010.3.
Inherited Members
Namespace: DiscrepancyReporting
Assembly: Ng911Lib.dll
Syntax
public class DiscrepancyResolution
Constructors
| Edit this page View SourceDiscrepancyResolution()
Default constructor.
Declaration
public DiscrepancyResolution()
Properties
| Edit this page View SourcediscrepancyReportId
Unique (to reporting agency) ID of report. Required.
Declaration
public string discrepancyReportId { get; set; }
Property Value
Type | Description |
---|---|
string |
problemService
Name of the service or instance where the discrepancy existed. Required.
Declaration
public string problemService { get; set; }
Property Value
Type | Description |
---|---|
string |
reportingAgencyName
FQDN of agency that created the discrepancy report. Required.
Declaration
public string reportingAgencyName { get; set; }
Property Value
Type | Description |
---|---|
string |
reportingAgentId
Agent ID of the agent that reported the discrepancy.
Declaration
public string reportingAgentId { get; set; }
Property Value
Type | Description |
---|---|
string |
resolution
Specifies how the discrepancy was resolved. Must be set to the string equivalent of one of the values in DrResolutionEnum. Required.
Declaration
public string resolution { get; set; }
Property Value
Type | Description |
---|---|
string |
respondingAgencyName
FQDN of entity responding to the report. Required.
Declaration
public string respondingAgencyName { get; set; }
Property Value
Type | Description |
---|---|
string |
respondingAgentId
UserId of agent responding to the report.
Declaration
public string respondingAgentId { get; set; }
Property Value
Type | Description |
---|---|
string |
respondingContactJcard
jCard of the agency providing the resolution. Required.
Declaration
public string respondingContactJcard { get; set; }
Property Value
Type | Description |
---|---|
string |
responseComments
Text comment.
Declaration
public string responseComments { get; set; }
Property Value
Type | Description |
---|---|
string |
responseTime
Timestamp of the resolution. Must be in the NENA Timestamp format specified in Section 2.3 of NENA-STA-010.3. Required.
Declaration
public string responseTime { get; set; }
Property Value
Type | Description |
---|---|
string |