Class WebhookTestResult
Results of testing a webhook
Implements
Inherited Members
Namespace: mailslurp.Model
Assembly: mailslurp.dll
Syntax
[DataContract(Name = "WebhookTestResult")]
public class WebhookTestResult : IValidatableObject
Constructors
View SourceWebhookTestResult()
Initializes a new instance of the WebhookTestResult class.
Declaration
[JsonConstructor]
protected WebhookTestResult()
WebhookTestResult(string, WebhookTestResponse, WebhookTestRequest)
Initializes a new instance of the WebhookTestResult class.
Declaration
public WebhookTestResult(string message = null, WebhookTestResponse response = null, WebhookTestRequest request = null)
Parameters
Type | Name | Description |
---|---|---|
string | message | message. |
WebhookTestResponse | response | response (required). |
WebhookTestRequest | request | request (required). |
Properties
View SourceMessage
Gets or Sets Message
Declaration
[DataMember(Name = "message", EmitDefaultValue = true)]
public string Message { get; set; }
Property Value
Type | Description |
---|---|
string |
Request
Gets or Sets Request
Declaration
[DataMember(Name = "request", IsRequired = true, EmitDefaultValue = true)]
public WebhookTestRequest Request { get; set; }
Property Value
Type | Description |
---|---|
WebhookTestRequest |
Response
Gets or Sets Response
Declaration
[DataMember(Name = "response", IsRequired = true, EmitDefaultValue = true)]
public WebhookTestResponse Response { get; set; }
Property Value
Type | Description |
---|---|
WebhookTestResponse |
Methods
View SourceToJson()
Returns the JSON string presentation of the object
Declaration
public virtual string ToJson()
Returns
Type | Description |
---|---|
string | JSON string presentation of the object |
ToString()
Returns the string presentation of the object
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
string | String presentation of the object |