Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 1.15 KB

HandlePublicSubscription200Response.md

File metadata and controls

30 lines (22 loc) · 1.15 KB

HandlePublicSubscription200Response

Properties

Name Type Description Notes
has_optin bool [optional]

Example

from listmonk.models.handle_public_subscription200_response import HandlePublicSubscription200Response

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

# convert the object into a dict
handle_public_subscription200_response_dict = handle_public_subscription200_response_instance.to_dict()
# create an instance of HandlePublicSubscription200Response from a dict
handle_public_subscription200_response_form_dict = handle_public_subscription200_response.from_dict(
    handle_public_subscription200_response_dict)

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