Webscripts Found
Name | Type | Description | Notes |
---|---|---|---|
embedded | GetPlugResponseV2Embedded | [optional] | |
limit | float | The page size used for this query result. | [optional] |
count | float | The total count of matching items, from which this result is one page. | |
page | float | The page number of a paged query result. | [optional] |
entities | List[EntityWithLinksIWebscriptResponseWithInvokeLinkV2] | The specification and deployment status of the queried functions |
from waylay.services.registry.models.latest_webscripts_response_v2 import LatestWebscriptsResponseV2
# TODO update the JSON string below
json = "{}"
# create an instance of LatestWebscriptsResponseV2 from a JSON string
latest_webscripts_response_v2_instance = LatestWebscriptsResponseV2.from_json(json)
# print the JSON string representation of the object
print LatestWebscriptsResponseV2.to_json()
# convert the object into a dict
latest_webscripts_response_v2_dict = latest_webscripts_response_v2_instance.to_dict()
# create an instance of LatestWebscriptsResponseV2 from a dict
latest_webscripts_response_v2_form_dict = latest_webscripts_response_v2.from_dict(latest_webscripts_response_v2_dict)