Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.39 KB

File metadata and controls

31 lines (22 loc) · 1.39 KB

SeoBacklinksBulkNewLostBacklinksItem

Properties

Name Type Description Notes
target str Domain, subdomain, or page echoed from the request.
new_backlinks int Number of new backlinks gained since date_from. [optional]
lost_backlinks int Number of backlinks lost since date_from. [optional]

Example

from unifapi.models.seo_backlinks_bulk_new_lost_backlinks_item import SeoBacklinksBulkNewLostBacklinksItem

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

# convert the object into a dict
seo_backlinks_bulk_new_lost_backlinks_item_dict = seo_backlinks_bulk_new_lost_backlinks_item_instance.to_dict()
# create an instance of SeoBacklinksBulkNewLostBacklinksItem from a dict
seo_backlinks_bulk_new_lost_backlinks_item_from_dict = SeoBacklinksBulkNewLostBacklinksItem.from_dict(seo_backlinks_bulk_new_lost_backlinks_item_dict)

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