| Name |
Type |
Description |
Notes |
| flag |
str |
A flag which determines whether the URL is `INCLUDE` or `EXCLUDE`. |
|
| url |
str |
The URL |
|
from wordlift_client.models.include_exclude_request import IncludeExcludeRequest
# TODO update the JSON string below
json = "{}"
# create an instance of IncludeExcludeRequest from a JSON string
include_exclude_request_instance = IncludeExcludeRequest.from_json(json)
# print the JSON string representation of the object
print(IncludeExcludeRequest.to_json())
# convert the object into a dict
include_exclude_request_dict = include_exclude_request_instance.to_dict()
# create an instance of IncludeExcludeRequest from a dict
include_exclude_request_from_dict = IncludeExcludeRequest.from_dict(include_exclude_request_dict)
[Back to Model list] [Back to API list] [Back to README]