Skip to content

Latest commit

 

History

History
42 lines (33 loc) · 2.72 KB

EntityWithLinksIWebscriptResponseWithInvokeLinkV2.md

File metadata and controls

42 lines (33 loc) · 2.72 KB

EntityWithLinksIWebscriptResponseWithInvokeLinkV2

Properties

Name Type Description Notes
embedded AltEmbeddedVersionIWebscriptResponseWithInvokeLinkV2 [optional]
links InvokeHALLink [optional]
created_by str The user that created this entity.
created_at datetime The timestamp at which this entity was created.
updated_by str The user that last updated this entity.
updated_at datetime The timestamp at which this entity was last updated.
updates List[UpdateRecord] The audit logs corresponding to the latest modifying operations on this entity. Omitted in listing operations. [optional]
status Status
failure_reason FailureReason [optional]
runtime RuntimeAttributes
deprecated bool If <code>true</code> this function is deprecated and removed from regular listings.
draft bool If <code>true</code> this function is a draft function and it's assets are still mutable.
webscript WebscriptManifest
secret str The secret for this webscript deployment. This is <code>null</code> when <code>allowHmac=false</code> in the webscript specificaton. [optional]

Example

from waylay.services.registry.models.entity_with_links_i_webscript_response_with_invoke_link_v2 import EntityWithLinksIWebscriptResponseWithInvokeLinkV2

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

# convert the object into a dict
entity_with_links_i_webscript_response_with_invoke_link_v2_dict = entity_with_links_i_webscript_response_with_invoke_link_v2_instance.to_dict()
# create an instance of EntityWithLinksIWebscriptResponseWithInvokeLinkV2 from a dict
entity_with_links_i_webscript_response_with_invoke_link_v2_form_dict = entity_with_links_i_webscript_response_with_invoke_link_v2.from_dict(entity_with_links_i_webscript_response_with_invoke_link_v2_dict)

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