Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.55 KB

WebscriptVersionsResponseV2.md

File metadata and controls

34 lines (25 loc) · 1.55 KB

WebscriptVersionsResponseV2

Webscript Versions Found

Properties

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[WebscriptResponseWithInvokeLinkV2] The specification and deployment status of the queried functions

Example

from waylay.services.registry.models.webscript_versions_response_v2 import WebscriptVersionsResponseV2

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

# convert the object into a dict
webscript_versions_response_v2_dict = webscript_versions_response_v2_instance.to_dict()
# create an instance of WebscriptVersionsResponseV2 from a dict
webscript_versions_response_v2_form_dict = webscript_versions_response_v2.from_dict(webscript_versions_response_v2_dict)

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