You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Remove confirmed (true), unconfirmed (false) or both segments (null). Default: null
[optional]
locked
bool
Remove locked (true), unlocked (false) or both segments (null). Default: false
[optional]
Example
fromphrasetms_client.models.translation_segments_reference_v2importTranslationSegmentsReferenceV2# TODO update the JSON string belowjson="{}"# create an instance of TranslationSegmentsReferenceV2 from a JSON stringtranslation_segments_reference_v2_instance=TranslationSegmentsReferenceV2.from_json(json)
# print the JSON string representation of the objectprintTranslationSegmentsReferenceV2.to_json()
# convert the object into a dicttranslation_segments_reference_v2_dict=translation_segments_reference_v2_instance.to_dict()
# create an instance of TranslationSegmentsReferenceV2 from a dicttranslation_segments_reference_v2_from_dict=TranslationSegmentsReferenceV2.from_dict(translation_segments_reference_v2_dict)