Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.05 KB

File metadata and controls

31 lines (22 loc) · 1.05 KB

AttachCallbackResponse

Properties

Name Type Description Notes
message str [optional]
status bool [optional]
url str [optional]

Example

from hyperstack.models.attach_callback_response import AttachCallbackResponse

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

# convert the object into a dict
attach_callback_response_dict = attach_callback_response_instance.to_dict()
# create an instance of AttachCallbackResponse from a dict
attach_callback_response_from_dict = AttachCallbackResponse.from_dict(attach_callback_response_dict)

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