Skip to content

Latest commit

 

History

History
31 lines (24 loc) · 1.31 KB

File metadata and controls

31 lines (24 loc) · 1.31 KB

DocBookSettingsDto

Properties

Name Type Description Notes
include_tags str [optional]
exclude_tags str [optional]
inline_tags str [optional]
inline_tags_non_translatable str [optional]
tag_regexp str [optional]

Example

from phrasetms_client.models.doc_book_settings_dto import DocBookSettingsDto

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

# convert the object into a dict
doc_book_settings_dto_dict = doc_book_settings_dto_instance.to_dict()
# create an instance of DocBookSettingsDto from a dict
doc_book_settings_dto_from_dict = DocBookSettingsDto.from_dict(doc_book_settings_dto_dict)

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