Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 1 KB

ResxSettingsDto.md

File metadata and controls

28 lines (21 loc) · 1 KB

ResxSettingsDto

Properties

Name Type Description Notes
tag_regexp str [optional]
html_sub_filter bool [optional]

Example

from phrasetms_client.models.resx_settings_dto import ResxSettingsDto

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

# convert the object into a dict
resx_settings_dto_dict = resx_settings_dto_instance.to_dict()
# create an instance of ResxSettingsDto from a dict
resx_settings_dto_from_dict = ResxSettingsDto.from_dict(resx_settings_dto_dict)

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