> ## Documentation Index
> Fetch the complete documentation index at: https://docs.bigdata.com/llms.txt
> Use this file to discover all available pages before exploring further.

# ChatInteraction

<Warning>
  We are sunsetting our SDKs and will no longer add new features, security patches, bug fixes, or technical support for them. To access the latest capabilities and ongoing improvements, we encourage you to migrate to our [RESTful API](/api-rest/introduction).

  SDK support will officially end on **December 31, 2026**. On this date, the underlying endpoints used by the SDKs and related documentation will be decommissioned.

  To avoid any disruption to your services, please ensure your migration is complete by that date.

  For migration assistance, please contact us at [support@bigdata.com](mailto:support@bigdata.com).
</Warning>

Represents a single interaction within a chat session.

## Fields

<ParamField query="question" type="string" required>
  The question asked during the chat interaction.
</ParamField>

<ParamField query="answer" type="string" required>
  The answer provided in response to the question.
</ParamField>

<ParamField query="interaction_timestamp" type="string" required>
  The timestamp marking when the interaction occurred.
</ParamField>

<ParamField query="date_created" type="datetime" required>
  The datetime when the interaction was created.
</ParamField>

<ParamField query="last_updated" type="datetime" required>
  The datetime when the interaction was last updated.
</ParamField>

<ParamField query="scope" type="ChatScope | None">
  The scope of the chat interaction, defining the context or domain: [ChatScope](./chatScope)
</ParamField>

<ParamField query="sources" type="list[ChatSource]">
  A list of sources associated with the chat interaction: [ChatSource](./chatSource)
</ParamField>
