Policy metadata entry (per policy type)
| Name | Type | Description | Notes |
|---|---|---|---|
| edited_by | str | The user ID of the user who last edited the policy | [optional] |
| edited_at | str | The timestamp of the last edit of the policy | [optional] |
| published_by | str | The user ID of the user who last published the policy | [optional] |
| published_at | str | The timestamp of the last publish of the policy | [optional] |
from fireblocks.models.policy_metadata_entry import PolicyMetadataEntry
# TODO update the JSON string below
json = "{}"
# create an instance of PolicyMetadataEntry from a JSON string
policy_metadata_entry_instance = PolicyMetadataEntry.from_json(json)
# print the JSON string representation of the object
print(PolicyMetadataEntry.to_json())
# convert the object into a dict
policy_metadata_entry_dict = policy_metadata_entry_instance.to_dict()
# create an instance of PolicyMetadataEntry from a dict
policy_metadata_entry_from_dict = PolicyMetadataEntry.from_dict(policy_metadata_entry_dict)