Skip to content

Latest commit

 

History

History
49 lines (40 loc) · 1.85 KB

ActiveAccount.md

File metadata and controls

49 lines (40 loc) · 1.85 KB

ActiveAccount

An array of objects.

Properties

Name Type Description Notes
collection str The collection hosting the Knowledge Graph. [optional] [default to 'entity']
country str [optional]
diagnostic_plugins List[DiagnosticPlugin] [optional]
domain_uri str [optional]
google_search_console_site_url str [optional]
id int [optional]
is_wordpress bool [optional]
key str [optional]
language str [optional]
ng_dataset_id str [optional]
package_type str [optional]
subscription AccountSubscription [optional]
subscription_id int [optional]
total_entities int [optional]
total_entities_with_schema_url int [optional]
url str [optional]
user_id int [optional]
wp_admin str [optional]
wp_include_exclude_default str [optional]
wp_json str [optional]

Example

from wordlift_client.models.active_account import ActiveAccount

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

# convert the object into a dict
active_account_dict = active_account_instance.to_dict()
# create an instance of ActiveAccount from a dict
active_account_from_dict = ActiveAccount.from_dict(active_account_dict)

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