Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.11 KB

File metadata and controls

30 lines (21 loc) · 1.11 KB

WebhookBadRequestErrorsInner

Properties

Name Type Description Notes
error str [optional]
issues List[str] [optional]

Example

from bamboohr_sdk.models.webhook_bad_request_errors_inner import WebhookBadRequestErrorsInner

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

# convert the object into a dict
webhook_bad_request_errors_inner_dict = webhook_bad_request_errors_inner_instance.to_dict()
# create an instance of WebhookBadRequestErrorsInner from a dict
webhook_bad_request_errors_inner_from_dict = WebhookBadRequestErrorsInner.from_dict(webhook_bad_request_errors_inner_dict)

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