Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.04 KB

File metadata and controls

30 lines (21 loc) · 1.04 KB

ClickFunnelRegistration

Properties

Name Type Description Notes
contact ClickFunnelContact
event str

Example

from wallet.models.click_funnel_registration import ClickFunnelRegistration

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

# convert the object into a dict
click_funnel_registration_dict = click_funnel_registration_instance.to_dict()
# create an instance of ClickFunnelRegistration from a dict
click_funnel_registration_form_dict = click_funnel_registration.from_dict(click_funnel_registration_dict)

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