Update of an education resource
Name | Type | Description | Notes |
---|---|---|---|
title | str | Title of the resource | [optional] |
privacy | EduResourcePrivacy | [optional] |
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)