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

# ConversationUpdateOneOf

This page outlines the union type for real-time conversation updates and the object types it can include.

## ConversationUpdateOneOf

<ParamField path="assistantMessageSent" type="ChatMessage">
  A complete message sent by the assistant. See [ChatMessage](/integrations/graphql-api/objects/chat-message).
</ParamField>

<ParamField path="assistantResponseDiff" type="ChatMessageDiff">
  A streaming diff update for an assistant's response in progress. See [ChatMessageDiff](/integrations/graphql-api/objects/chat-message-diff).
</ParamField>

<ParamField path="assistantResponseCancelled" type="Boolean">
  Indicates whether the assistant's response was cancelled.
</ParamField>

## Related operations

<CardGroup cols={2}>
  <Card title="Subscribe Conversation" icon="wifi" href="/integrations/graphql-api/subscriptions/subscribe-conversation">
    Subscribe to conversation updates
  </Card>

  <Card title="ChatMessage Schema" icon="message" href="/integrations/graphql-api/objects/chat-message">
    Learn about the complete message structure
  </Card>

  <Card title="ChatMessageDiff Schema" icon="pen-to-square" href="/integrations/graphql-api/objects/chat-message-diff">
    Understand streaming message updates
  </Card>
</CardGroup>
