Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.55 KB

File metadata and controls

31 lines (22 loc) · 1.55 KB

LinkGeolinksInnerConditionsInner

Properties

Name Type Description Notes
type str Type of the condition [optional]
value str Value for the given type. Allowed values depend on "type": e.g., "US", "DE", "FR" for type "country"; "en", "fr", "de" for type "language"; "Android", "iOS" for type "system". [optional]
operator str Operator to apply for the condition [optional]

Example

from urlr.models.link_geolinks_inner_conditions_inner import LinkGeolinksInnerConditionsInner

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

# convert the object into a dict
link_geolinks_inner_conditions_inner_dict = link_geolinks_inner_conditions_inner_instance.to_dict()
# create an instance of LinkGeolinksInnerConditionsInner from a dict
link_geolinks_inner_conditions_inner_from_dict = LinkGeolinksInnerConditionsInner.from_dict(link_geolinks_inner_conditions_inner_dict)

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