Skip to content

Latest commit

 

History

History
40 lines (31 loc) · 1.7 KB

NdJsonResponseStream.md

File metadata and controls

40 lines (31 loc) · 1.7 KB

NdJsonResponseStream

Properties

Name Type Description Notes
type CloudMetadataEventDataType
object_type ResourcetypeMetadataEventAllOfObjectType
timestamp datetime
resource ResourceEntity
old_values object old values of all attributes that have changed [optional]
message object The broker message that triggered the discovery [optional]
resourcetype ResourceTypeEntity
id object
source CloudMetadataEventDataSource
subject object
data MetadataEvent [optional]
time datetime

Example

from waylay.services.resources.models.nd_json_response_stream import NdJsonResponseStream

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

# convert the object into a dict
nd_json_response_stream_dict = nd_json_response_stream_instance.to_dict()
# create an instance of NdJsonResponseStream from a dict
nd_json_response_stream_form_dict = nd_json_response_stream.from_dict(nd_json_response_stream_dict)

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