Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.08 KB

File metadata and controls

30 lines (21 loc) · 1.08 KB

LinkGeolinksInner

Properties

Name Type Description Notes
conditions List[LinkGeolinksInnerConditionsInner] Conditions for dynamic routing [optional]
url str URL to redirect to when conditions match [optional]

Example

from urlr.models.link_geolinks_inner import LinkGeolinksInner

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

# convert the object into a dict
link_geolinks_inner_dict = link_geolinks_inner_instance.to_dict()
# create an instance of LinkGeolinksInner from a dict
link_geolinks_inner_from_dict = LinkGeolinksInner.from_dict(link_geolinks_inner_dict)

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