Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.1 KB

File metadata and controls

33 lines (24 loc) · 1.1 KB

RestRList

Properties

Name Type Description Notes
id str [optional]
name str [optional]
type int List type. Values: - `0` - Regular list (single opt-in) - `1` - Double opt-in list (requires email confirmation) [optional]
created datetime [optional]
updated datetime [optional]

Example

from sendx_python_sdk.models.rest_r_list import RestRList

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

# convert the object into a dict
rest_r_list_dict = rest_r_list_instance.to_dict()
# create an instance of RestRList from a dict
rest_r_list_from_dict = RestRList.from_dict(rest_r_list_dict)

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