Skip to content

Latest commit

 

History

History
33 lines (26 loc) · 1.77 KB

CustomFileTypeDto.md

File metadata and controls

33 lines (26 loc) · 1.77 KB

CustomFileTypeDto

Properties

Name Type Description Notes
uid str [optional]
name str [optional]
filename_pattern str [optional]
type str [optional]
created_by UserReference [optional]
date_created datetime [optional]
file_import_settings FileImportSettingsDto [optional]

Example

from phrasetms_client.models.custom_file_type_dto import CustomFileTypeDto

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

# convert the object into a dict
custom_file_type_dto_dict = custom_file_type_dto_instance.to_dict()
# create an instance of CustomFileTypeDto from a dict
custom_file_type_dto_from_dict = CustomFileTypeDto.from_dict(custom_file_type_dto_dict)

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