# ConfluenceCredentials The object with Confluence credentials. ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **username** | **str** | Name or email of the user. | **password** | **str** | Password or API token. | ## Example ```python from h2ogpte.rest_sync.models.confluence_credentials import ConfluenceCredentials # TODO update the JSON string below json = "{}" # create an instance of ConfluenceCredentials from a JSON string confluence_credentials_instance = ConfluenceCredentials.from_json(json) # print the JSON string representation of the object print(ConfluenceCredentials.to_json()) # convert the object into a dict confluence_credentials_dict = confluence_credentials_instance.to_dict() # create an instance of ConfluenceCredentials from a dict confluence_credentials_from_dict = ConfluenceCredentials.from_dict(confluence_credentials_dict) ```