Policy related metadata
| 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.legacy_policy_metadata import LegacyPolicyMetadata
# TODO update the JSON string below
json = "{}"
# create an instance of LegacyPolicyMetadata from a JSON string
legacy_policy_metadata_instance = LegacyPolicyMetadata.from_json(json)
# print the JSON string representation of the object
print(LegacyPolicyMetadata.to_json())
# convert the object into a dict
legacy_policy_metadata_dict = legacy_policy_metadata_instance.to_dict()
# create an instance of LegacyPolicyMetadata from a dict
legacy_policy_metadata_from_dict = LegacyPolicyMetadata.from_dict(legacy_policy_metadata_dict)