Variable GetSessionsResponseConst

GetSessionsResponse: ZodArray<ZodObject<{
    activeClients: ZodArray<ZodString>;
    destination: ZodString;
    forwardPath: ZodObject<{
        Hops: ZodOptional<ZodNumber>;
    }, $strip>;
    hoprMtu: ZodNumber;
    ip: ZodString;
    maxClientSessions: ZodNumber;
    maxSurbUpstream: ZodOptional<ZodNullable<ZodString>>;
    port: ZodNumber;
    protocol: ZodEnum<{
        tcp: "tcp";
        udp: "udp";
    }>;
    responseBuffer: ZodOptional<ZodNullable<ZodString>>;
    returnPath: ZodObject<{
        Hops: ZodOptional<ZodNumber>;
    }, $strip>;
    sessionPool: ZodOptional<ZodNullable<ZodNumber>>;
    surbLen: ZodNumber;
    target: ZodString;
}, $strip>> = ...