Skip to content

Latest commit

History

History
31 lines (22 loc) 路 1.04 KB

EduResourceUpdate.md

File metadata and controls

31 lines (22 loc) 路 1.04 KB

EduResourceUpdate

Update of an education resource

Properties

Name Type Description Notes
title str Title of the resource [optional]
privacy EduResourcePrivacy [optional]

Example

from flat_api.models.edu_resource_update import EduResourceUpdate

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

# convert the object into a dict
edu_resource_update_dict = edu_resource_update_instance.to_dict()
# create an instance of EduResourceUpdate from a dict
edu_resource_update_form_dict = edu_resource_update.from_dict(edu_resource_update_dict)

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