Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 978 Bytes

File metadata and controls

31 lines (22 loc) · 978 Bytes

SegmentRequest

Body for POST /segments and PUT /segments/{id}.

Properties

Name Type Description Notes
name str
description str [optional]

Example

from wordlift_client.models.segment_request import SegmentRequest

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

# convert the object into a dict
segment_request_dict = segment_request_instance.to_dict()
# create an instance of SegmentRequest from a dict
segment_request_from_dict = SegmentRequest.from_dict(segment_request_dict)

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