Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.19 KB

ResourceScrappedData.md

File metadata and controls

35 lines (26 loc) · 1.19 KB

ResourceScrappedData

Properties

Name Type Description Notes
id int [readonly]
date_created datetime [readonly]
last_modified datetime [readonly]
resource int
content str [optional]
content_type str [optional]
extra_data object [optional]

Example

from iblai.models.resource_scrapped_data import ResourceScrappedData

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

# convert the object into a dict
resource_scrapped_data_dict = resource_scrapped_data_instance.to_dict()
# create an instance of ResourceScrappedData from a dict
resource_scrapped_data_from_dict = ResourceScrappedData.from_dict(resource_scrapped_data_dict)

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