Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.01 KB

File metadata and controls

33 lines (24 loc) · 1.01 KB

SegmentResponse

Properties

Name Type Description Notes
id str
name str
description str [optional]
created_at datetime
updated_at datetime

Example

from wordlift_client.models.segment_response import SegmentResponse

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

# convert the object into a dict
segment_response_dict = segment_response_instance.to_dict()
# create an instance of SegmentResponse from a dict
segment_response_from_dict = SegmentResponse.from_dict(segment_response_dict)

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