Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 1.2 KB

UpdateIgnoredWarningsDto.md

File metadata and controls

27 lines (20 loc) · 1.2 KB

UpdateIgnoredWarningsDto

Properties

Name Type Description Notes
job_parts List[UpdateIgnoredJobPartSegment]

Example

from phrasetms_client.models.update_ignored_warnings_dto import UpdateIgnoredWarningsDto

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

# convert the object into a dict
update_ignored_warnings_dto_dict = update_ignored_warnings_dto_instance.to_dict()
# create an instance of UpdateIgnoredWarningsDto from a dict
update_ignored_warnings_dto_from_dict = UpdateIgnoredWarningsDto.from_dict(update_ignored_warnings_dto_dict)

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