Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.02 KB

File metadata and controls

32 lines (23 loc) · 1.02 KB

WebhookTestResult

Properties

Name Type Description Notes
success bool
http_status int [optional]
response_body str [optional]
error str [optional]

Example

from stratum.models.webhook_test_result import WebhookTestResult

# TODO update the JSON string below
json = "{}"
# create an instance of WebhookTestResult from a JSON string
webhook_test_result_instance = WebhookTestResult.from_json(json)
# print the JSON string representation of the object
print(WebhookTestResult.to_json())

# convert the object into a dict
webhook_test_result_dict = webhook_test_result_instance.to_dict()
# create an instance of WebhookTestResult from a dict
webhook_test_result_from_dict = WebhookTestResult.from_dict(webhook_test_result_dict)

[Back to Model list] [Back to API list] [Back to README]