Class WebhookInfo
Webhook information.
Inherited Members
Namespace: FM.LiveSwitch
Assembly: FM.LiveSwitch.dll
Syntax
public class WebhookInfo : Info
Properties
Result
Gets or sets the webhook result.
Declaration
public int Result { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Int32 |
Url
Gets or sets the webhook URL.
Declaration
public string Url { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
Methods
DeserializeProperties(String, String)
Deserializes the properties.
Declaration
protected override void DeserializeProperties(string key, string valueJson)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | key | The key. |
| System.String | valueJson | The value in JSON format. |
Overrides
FromJson(String)
Deserializes Json to a WebhookInfo.
Declaration
public static WebhookInfo FromJson(string webhookInfoJson)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | webhookInfoJson | The serialized Json. |
Returns
| Type | Description |
|---|---|
| WebhookInfo | The deserialized WebhookInfo. |
SerializeProperties(Dictionary<String, String>)
Serializes the properties.
Declaration
protected override void SerializeProperties(Dictionary<string, string> jsonObject)
Parameters
| Type | Name | Description |
|---|---|---|
| Dictionary<System.String, System.String> | jsonObject | The JSON object. |
Overrides
ToJson()
Serializes this instance to Json.
Declaration
public string ToJson()
Returns
| Type | Description |
|---|---|
| System.String |
ToJson(WebhookInfo)
Serializes an instance to Json.
Declaration
public static string ToJson(WebhookInfo webhookInfo)
Parameters
| Type | Name | Description |
|---|---|---|
| WebhookInfo | webhookInfo | The instance to serialize. |
Returns
| Type | Description |
|---|---|
| System.String | Serialized Json. |