Skip to content

ema / @internals/db / ConversationEntity

Interface: ConversationEntity

Defined in: db/base.ts:237

Represents conversation data structure

Extends

Properties

actorId

ts
actorId: number;

Defined in: db/base.ts:245

Which actor is the owner of this conversation


createdAt?

ts
optional createdAt: number;

Defined in: db/base.ts:14

The date and time the entity was created

Inherited from

Entity.createdAt


id?

ts
optional id: number;

Defined in: db/base.ts:10

The unique identifier for the entity

Inherited from

Entity.id


name

ts
name: string;

Defined in: db/base.ts:241

The name of the conversation


updatedAt?

ts
optional updatedAt: number;

Defined in: db/base.ts:253

The date and time the conversation was last updated


userId

ts
userId: number;

Defined in: db/base.ts:249

The user ID that issues this conversation