Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.01 KB

ContentType.md

File metadata and controls

33 lines (24 loc) · 1.01 KB

ContentType

Properties

Name Type Description Notes
boundary str [optional]
char_set str [optional]
media_type str [optional]
name str [optional]
parameters List[object] [optional] [readonly]

Example

from openapi_client.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]