Interface IConnectorQueueData

interface IConnectorQueueData {
    domainId: string;
    gameServerId: string;
    operation: "create" | "update" | "delete";
    [key: string]: unknown;
}

Hierarchy (View Summary)

Indexable

  • [key: string]: unknown

Properties

domainId: string
gameServerId: string
operation: "create" | "update" | "delete"