Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 1.19 KB

UpdateIgnoredSegment.md

File metadata and controls

28 lines (21 loc) · 1.19 KB

UpdateIgnoredSegment

Properties

Name Type Description Notes
uid str
warnings List[UpdateIgnoredWarning]

Example

from phrasetms_client.models.update_ignored_segment import UpdateIgnoredSegment

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

# convert the object into a dict
update_ignored_segment_dict = update_ignored_segment_instance.to_dict()
# create an instance of UpdateIgnoredSegment from a dict
update_ignored_segment_from_dict = UpdateIgnoredSegment.from_dict(update_ignored_segment_dict)

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