Name | Type | Description | Notes |
---|---|---|---|
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 plug is removed from regular listings, as a result of a <code>DELETE</code> with <code>force=false</code>. | |
draft | bool | If <code>true</code> this function is a draft function and it's assets are still mutable. | |
plug | PlugManifest | ||
invocation | InvocationAttributes |
from waylay.services.registry.models.plug_with_invocation_response_v2 import PlugWithInvocationResponseV2
# TODO update the JSON string below
json = "{}"
# create an instance of PlugWithInvocationResponseV2 from a JSON string
plug_with_invocation_response_v2_instance = PlugWithInvocationResponseV2.from_json(json)
# print the JSON string representation of the object
print PlugWithInvocationResponseV2.to_json()
# convert the object into a dict
plug_with_invocation_response_v2_dict = plug_with_invocation_response_v2_instance.to_dict()
# create an instance of PlugWithInvocationResponseV2 from a dict
plug_with_invocation_response_v2_form_dict = plug_with_invocation_response_v2.from_dict(plug_with_invocation_response_v2_dict)