Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.12 KB

CreateFiling.md

File metadata and controls

36 lines (27 loc) · 1.12 KB

CreateFiling

Properties

Name Type Description Notes
company str
cik str [optional] [default to '']
quarter str [optional] [default to '']
date_filed str
url str [optional] [default to '']
form_type str
table FilingTable
parsed str

Example

from sec_agent_sdk.models.create_filing import CreateFiling

# TODO update the JSON string below
json = "{}"
# create an instance of CreateFiling from a JSON string
create_filing_instance = CreateFiling.from_json(json)
# print the JSON string representation of the object
print(CreateFiling.to_json())

# convert the object into a dict
create_filing_dict = create_filing_instance.to_dict()
# create an instance of CreateFiling from a dict
create_filing_from_dict = CreateFiling.from_dict(create_filing_dict)

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