# IngestFromWebsiteBody ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **url** | **str** | String of the url to crawl. | ## Example ```python from h2ogpte.rest.models.ingest_from_website_body import IngestFromWebsiteBody # TODO update the JSON string below json = "{}" # create an instance of IngestFromWebsiteBody from a JSON string ingest_from_website_body_instance = IngestFromWebsiteBody.from_json(json) # print the JSON string representation of the object print(IngestFromWebsiteBody.to_json()) # convert the object into a dict ingest_from_website_body_dict = ingest_from_website_body_instance.to_dict() # create an instance of IngestFromWebsiteBody from a dict ingest_from_website_body_from_dict = IngestFromWebsiteBody.from_dict(ingest_from_website_body_dict) ```