Class SipDiscrepancyReport
Data class for a SIP Discrepancy Report. See Sections 3.7.9 and E.2.1 of NENA-STA-010.3.
Inherited Members
Namespace: DiscrepancyReporting
Assembly: Ng911Lib.dll
Syntax
public class SipDiscrepancyReport : DiscrepancyReport
Constructors
| Edit this page View SourceSipDiscrepancyReport()
Default constructor
Declaration
public SipDiscrepancyReport()
Properties
| Edit this page View SourcecallIdUrn
Set to the Emergency Call Identifier. Conditional: REQUIRED if problem is related to a specific call.
Declaration
public string callIdUrn { get; set; }
Property Value
Type | Description |
---|---|
string |
incidentIdUrn
Set to the Emergency Incident Identifier. Conditional: REQUIRED if problem is related to a specific incident.
Declaration
public string incidentIdUrn { get; set; }
Property Value
Type | Description |
---|---|
string |
problem
Specifies the problem. Must be set to the string equivalent of one of the values in the SipProblemEnum. Required.
Declaration
public string problem { get; set; }
Property Value
Type | Description |
---|---|
string |
queueName
The name of the call queue. Conditional: REQUIRED if the call was sent to a queue.
Declaration
public string queueName { get; set; }
Property Value
Type | Description |
---|---|
string |
request
Set to the string version of the SIP request. Conditional: REQUIRED if the problem occurred on a SIP request or response.
Declaration
public string request { get; set; }
Property Value
Type | Description |
---|---|
string |
result
The status code returned from the SIP request. Conditional: REQUIRED if the problem occurred on a SIP request or response.
Declaration
public string result { get; set; }
Property Value
Type | Description |
---|---|
string |
testCallGenerator
Set to the block of parameters specified in Section 4.6.17 of NENA-STA-010.3. This is the string verion of the SendCallRequests data class. Conditional: REQUIRED if discrepancy report is related to a test call.
Declaration
public string testCallGenerator { get; set; }
Property Value
Type | Description |
---|---|
string |