interface ServerEvent {
    action: string;
    createdAt?: Date;
    id: string;
    updatedAt?: Date;
}

Properties

action: string

The action that will be applied to the server.

createdAt?: Date

Date of creation of the action.

id: string

ID of the server to which the action will be applied.

updatedAt?: Date

Date of last modification of the action.