| Name |
Type |
Description |
Notes |
| boundary |
str |
|
[optional] |
| char_set |
str |
|
[optional] |
| media_type |
str |
|
[optional] |
| name |
str |
|
[optional] |
| parameters |
List[object] |
|
[optional] [readonly] |
from docspace_api_sdk.models.content_type import ContentType
# TODO update the JSON string below
json = "{}"
# create an instance of ContentType from a JSON string
content_type_instance = ContentType.from_json(json)
# print the JSON string representation of the object
print(ContentType.to_json())
# convert the object into a dict
content_type_dict = content_type_instance.to_dict()
# create an instance of ContentType from a dict
content_type_from_dict = ContentType.from_dict(content_type_dict)
[Back to Model list] [Back to API list] [Back to README]