Asset harvesting configuration
| Name | Type | Description | Notes |
|---|---|---|---|
| network_intercept | V2CrawlerAssetsNetworkIntercept | [optional] | |
| parser | V2CrawlerAssetsParser | [optional] |
from quantcdn.models.v2_crawler_assets import V2CrawlerAssets
# TODO update the JSON string below
json = "{}"
# create an instance of V2CrawlerAssets from a JSON string
v2_crawler_assets_instance = V2CrawlerAssets.from_json(json)
# print the JSON string representation of the object
print(V2CrawlerAssets.to_json())
# convert the object into a dict
v2_crawler_assets_dict = v2_crawler_assets_instance.to_dict()
# create an instance of V2CrawlerAssets from a dict
v2_crawler_assets_from_dict = V2CrawlerAssets.from_dict(v2_crawler_assets_dict)