Skip to content

Latest commit

 

History

History
29 lines (22 loc) · 1.27 KB

SegmentWarningsDto.md

File metadata and controls

29 lines (22 loc) · 1.27 KB

SegmentWarningsDto

Properties

Name Type Description Notes
segment_id str [optional]
warnings List[SegmentWarning] [optional]
ignored_checks List[str] [optional]

Example

from phrasetms_client.models.segment_warnings_dto import SegmentWarningsDto

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

# convert the object into a dict
segment_warnings_dto_dict = segment_warnings_dto_instance.to_dict()
# create an instance of SegmentWarningsDto from a dict
segment_warnings_dto_from_dict = SegmentWarningsDto.from_dict(segment_warnings_dto_dict)

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