Name | Type | Description | Notes |
---|---|---|---|
time | datetime | ||
resource_id | ResourceId | ||
user_id | str | User subject id in the Waylay Accounts database | |
change | ResourceChangeChange | ||
resource | ResourceWithIdEntity | [optional] |
from waylay.services.resources.models.resource_change import ResourceChange
# TODO update the JSON string below
json = "{}"
# create an instance of ResourceChange from a JSON string
resource_change_instance = ResourceChange.from_json(json)
# print the JSON string representation of the object
print ResourceChange.to_json()
# convert the object into a dict
resource_change_dict = resource_change_instance.to_dict()
# create an instance of ResourceChange from a dict
resource_change_form_dict = resource_change.from_dict(resource_change_dict)