Class UnsubscribeResponseObject
Class for the body of the unsubscribe response message. See Section 2.1.5.2.2 of NENA-STA-024.1a-2023.
Inheritance
System.Object
UnsubscribeResponseObject
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: WebSocketSubNot
Assembly: EidoLib.dll
Syntax
public class UnsubscribeResponseObject
Properties
requestId
The ID specified by the subscriber. Required.
Declaration
public string requestId { get; set; }
Property Value
Type | Description |
---|---|
System.String |
statusCode
Status code of response according to the request, e.g., 200. Must be set to one of the values in the UnsubscribeResponseCodeEnum. Required.
Declaration
public int statusCode { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
statusText
The statusText is intended to provide information related to the statusCode. Required.
Declaration
public string statusText { get; set; }
Property Value
Type | Description |
---|---|
System.String |
subscriptionId
Globally unique identifier for the subscription. Required.
Declaration
public string subscriptionId { get; set; }
Property Value
Type | Description |
---|---|
System.String |