Skip to content

Latest commit

 

History

History
31 lines (24 loc) · 1.55 KB

ImportSettingsDto.md

File metadata and controls

31 lines (24 loc) · 1.55 KB

ImportSettingsDto

Properties

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

Example

from phrasetms_client.models.import_settings_dto import ImportSettingsDto

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

# convert the object into a dict
import_settings_dto_dict = import_settings_dto_instance.to_dict()
# create an instance of ImportSettingsDto from a dict
import_settings_dto_from_dict = ImportSettingsDto.from_dict(import_settings_dto_dict)

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