Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 965 Bytes

File metadata and controls

33 lines (24 loc) · 965 Bytes

LinkUtm

UTM parameters

Properties

Name Type Description Notes
campaign str utm_campaign [optional]
medium str utm_medium [optional]
source str utm_source [optional]
content str utm_content [optional]

Example

from urlr.models.link_utm import LinkUtm

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

# convert the object into a dict
link_utm_dict = link_utm_instance.to_dict()
# create an instance of LinkUtm from a dict
link_utm_from_dict = LinkUtm.from_dict(link_utm_dict)

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