Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 1.05 KB

CreateWebscriptsCopyParameter.md

File metadata and controls

28 lines (19 loc) · 1.05 KB

CreateWebscriptsCopyParameter

Properties

Name Type Description Notes

Example

from waylay.services.registry.models.create_webscripts_copy_parameter import CreateWebscriptsCopyParameter

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

# convert the object into a dict
create_webscripts_copy_parameter_dict = create_webscripts_copy_parameter_instance.to_dict()
# create an instance of CreateWebscriptsCopyParameter from a dict
create_webscripts_copy_parameter_form_dict = create_webscripts_copy_parameter.from_dict(create_webscripts_copy_parameter_dict)

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