Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 840 Bytes

PatchFiling.md

File metadata and controls

29 lines (20 loc) · 840 Bytes

PatchFiling

Properties

Name Type Description Notes
parsed str

Example

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)

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