Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.1 KB

IncludeExclude.md

File metadata and controls

32 lines (23 loc) · 1.1 KB

IncludeExclude

Properties

Name Type Description Notes
account_id int Account unique identifier [readonly]
flag str A flag which determines whether the URL is `INCLUDE` or `EXCLUDE`.
id int Unique identifier [optional] [readonly]
url str The URL

Example

from wordlift_client.models.include_exclude import IncludeExclude

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

# convert the object into a dict
include_exclude_dict = include_exclude_instance.to_dict()
# create an instance of IncludeExclude from a dict
include_exclude_from_dict = IncludeExclude.from_dict(include_exclude_dict)

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