Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 992 Bytes

RebuildRequestV2.md

File metadata and controls

29 lines (20 loc) · 992 Bytes

RebuildRequestV2

Properties

Name Type Description Notes
deploy FunctionDeployOverridesType [optional]

Example

from waylay.services.registry.models.rebuild_request_v2 import RebuildRequestV2

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

# convert the object into a dict
rebuild_request_v2_dict = rebuild_request_v2_instance.to_dict()
# create an instance of RebuildRequestV2 from a dict
rebuild_request_v2_form_dict = rebuild_request_v2.from_dict(rebuild_request_v2_dict)

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