Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.3 KB

RebuildWebscriptAsyncResponseV2.md

File metadata and controls

33 lines (24 loc) · 1.3 KB

RebuildWebscriptAsyncResponseV2

Webscript Rebuild Initiated

Properties

Name Type Description Notes
message str
links JobHALLinks
causes JobCauses
entity WebscriptResponseV2

Example

from waylay.services.registry.models.rebuild_webscript_async_response_v2 import RebuildWebscriptAsyncResponseV2

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

# convert the object into a dict
rebuild_webscript_async_response_v2_dict = rebuild_webscript_async_response_v2_instance.to_dict()
# create an instance of RebuildWebscriptAsyncResponseV2 from a dict
rebuild_webscript_async_response_v2_form_dict = rebuild_webscript_async_response_v2.from_dict(rebuild_webscript_async_response_v2_dict)

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