Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.47 KB

LatestWebscriptsResponseV2.md

File metadata and controls

33 lines (24 loc) · 1.47 KB

LatestWebscriptsResponseV2

Webscripts Found

Properties

Name Type Description Notes
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

Example

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)

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