Email entity interface.

This is the application-facing interface for the Email entity. Because it extends the Entity interface, it supports additional properties of any type supported by the database.

Run the EntityManager addKeys method to add generated properties to any Entity object before sending it to the database.

interface Email {
    created: number;
    email: string;
    userId: string;
}

Hierarchy

Properties

Properties

created: number
email: string
userId: string