Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 1.13 KB

DeleteCustomFileTypeDto.md

File metadata and controls

27 lines (20 loc) · 1.13 KB

DeleteCustomFileTypeDto

Properties

Name Type Description Notes
custom_file_types List[UidReference]

Example

from phrasetms_client.models.delete_custom_file_type_dto import DeleteCustomFileTypeDto

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

# convert the object into a dict
delete_custom_file_type_dto_dict = delete_custom_file_type_dto_instance.to_dict()
# create an instance of DeleteCustomFileTypeDto from a dict
delete_custom_file_type_dto_from_dict = DeleteCustomFileTypeDto.from_dict(delete_custom_file_type_dto_dict)

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