Interface BelongsToLinkProps

Extends DynaRecord with properties specific to "BelongsTo" relationships, such as foreignEntityType and foreignKey.

interface BelongsToLinkProps {
    createdAt: Date;
    foreignEntityType: string;
    foreignKey: string;
    id: string;
    type: string;
    updatedAt: Date;
}

Hierarchy (view full)

Implemented by

Properties

createdAt: Date

The timestamp marking when the entity was created

foreignEntityType: string
foreignKey: string
id: string

A unique identifier for the entity itself, automatically generated upon creation.

type: string

The type of the Entity

updatedAt: Date

The timestamp marking the last update to the entity. Initially set to the same value as createdAt.

Generated using TypeDoc