# IngestFromConfluenceBody ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **base_url** | **str** | Base url of the confluence instance. | **page_ids** | **List[str]** | Ids of pages to be ingested. | **credentials** | [**ConfluenceCredentials**](ConfluenceCredentials.md) | | **metadata** | **object** | Metadata for the documents. | [optional] ## Example ```python from h2ogpte.rest_sync.models.ingest_from_confluence_body import IngestFromConfluenceBody # TODO update the JSON string below json = "{}" # create an instance of IngestFromConfluenceBody from a JSON string ingest_from_confluence_body_instance = IngestFromConfluenceBody.from_json(json) # print the JSON string representation of the object print(IngestFromConfluenceBody.to_json()) # convert the object into a dict ingest_from_confluence_body_dict = ingest_from_confluence_body_instance.to_dict() # create an instance of IngestFromConfluenceBody from a dict ingest_from_confluence_body_from_dict = IngestFromConfluenceBody.from_dict(ingest_from_confluence_body_dict) ```