Type Alias ClientServerInfoResponse

ClientServerInfoResponse: ClientBaseResponse<{
    connection: Omit<CamelCasedPropertiesDeep<ServerInfoConnection>, "protcolUsed"> & {
        protocolUsed: string;
    };
    gameserver: Omit<CamelCasedPropertiesDeep<ServerInfoGameServer>, "gameIntegration"> & {
        gameIntegration: Omit<CamelCasedPropertiesDeep<ServerInfoGameServerIntegration>, "updatedAt"> & {
            updatedAt: Date | null;
        };
    };
    links: CamelCasedPropertiesDeep<ServerInfoLink>[];
    object: Omit<CamelCasedPropertiesDeep<ServerInfoObject>, "createdAt" | "updatedAt"> & {
        createdAt: Date;
        updatedAt: Date;
    };
    worker: CamelCasedPropertiesDeep<ServerInfoWorker>;
}>