Name | Type | Description | Notes |
---|---|---|---|
parsed | str |
from sec_agent_sdk.models.patch_filing import PatchFiling
# TODO update the JSON string below
json = "{}"
# create an instance of PatchFiling from a JSON string
patch_filing_instance = PatchFiling.from_json(json)
# print the JSON string representation of the object
print(PatchFiling.to_json())
# convert the object into a dict
patch_filing_dict = patch_filing_instance.to_dict()
# create an instance of PatchFiling from a dict
patch_filing_from_dict = PatchFiling.from_dict(patch_filing_dict)