Skip to content

Latest commit

 

History

History
29 lines (22 loc) · 1.09 KB

PsdSettingsDto.md

File metadata and controls

29 lines (22 loc) · 1.09 KB

PsdSettingsDto

Properties

Name Type Description Notes
extract_hidden_layers bool Default: true [optional]
extract_locked_layers bool Default: true [optional]
tag_regexp str [optional]

Example

from phrasetms_client.models.psd_settings_dto import PsdSettingsDto

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

# convert the object into a dict
psd_settings_dto_dict = psd_settings_dto_instance.to_dict()
# create an instance of PsdSettingsDto from a dict
psd_settings_dto_from_dict = PsdSettingsDto.from_dict(psd_settings_dto_dict)

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