Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 1008 Bytes

SEGMENTTARGET.md

File metadata and controls

27 lines (20 loc) · 1008 Bytes

SEGMENTTARGET

Properties

Name Type Description Notes
references PlainReferences [optional]

Example

from phrasetms_client.models.segmenttarget import SEGMENTTARGET

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

# convert the object into a dict
segmenttarget_dict = segmenttarget_instance.to_dict()
# create an instance of SEGMENTTARGET from a dict
segmenttarget_from_dict = SEGMENTTARGET.from_dict(segmenttarget_dict)

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