# The GenieConversation object

## Attributes

- `id` (string)
  Conversation ID.
   Legacy identifier, use conversation_id instead
  Example: `e1ef34712a29169db030324fd0e1df5f`
- `space_id` (string)
  Genie space ID
  Example: `e1ef34712a29169db030324fd0e1df5f`
- `user_id` (int64)
  ID of the user who created the conversation
  Example: `e1ef34712a29169db030324fd0e1df5f`
- `created_timestamp` (int64)
  Timestamp when the message was created
- `last_updated_timestamp` (int64)
  Timestamp when the message was last updated
- `title` (string)
  Conversation title
- `conversation_id` (string)
  Conversation ID
  Example: `e1ef34712a29169db030324fd0e1df5f`

## Example

```json
{
  "id": "e1ef34712a29169db030324fd0e1df5f",
  "space_id": "e1ef34712a29169db030324fd0e1df5f",
  "user_id": "e1ef34712a29169db030324fd0e1df5f",
  "created_timestamp": 0,
  "last_updated_timestamp": 0,
  "title": "string",
  "conversation_id": "e1ef34712a29169db030324fd0e1df5f"
}
```


