Class NSWebhookResult
Result of calling a webhook.
Constructors
NSWebhookResult()
Initializes a new instance of the NSWebhookResult class.
Declaration
NSWebhookResult Methods
GetMessage()
Declaration
String GetMessage() Examples
NSWebhookResult thing;
String message = thing.GetMessage();
Returns
| Type | Description |
| String | Headers and body of response from webhook. |
GetSuccess()
Declaration
Bool GetSuccess() Examples
NSWebhookResult thing;
Bool success = thing.GetSuccess();
Returns
| Type | Description |
| Bool | Was call to webhook successful? (200 OK). |