Variable GetChannelsResponseConst

GetChannelsResponse: ZodObject<{
    all: ZodArray<ZodObject<{
        balance: ZodString;
        channelEpoch: ZodNumber;
        channelId: ZodString;
        closureTime: ZodNumber;
        destination: ZodString;
        source: ZodString;
        status: ZodString;
        ticketIndex: ZodNumber;
    }, $strip>>;
    incoming: ZodArray<ZodObject<{
        balance: ZodString;
        id: ZodString;
        peerAddress: ZodString;
        status: ZodEnum<{
            Closed: "Closed";
            Open: "Open";
            PendingToClose: "PendingToClose";
        }>;
    }, $strip>>;
    outgoing: ZodArray<ZodObject<{
        balance: ZodString;
        id: ZodString;
        peerAddress: ZodString;
        status: ZodEnum<{
            Closed: "Closed";
            Open: "Open";
            PendingToClose: "PendingToClose";
        }>;
    }, $strip>>;
}, $strip> = ...

Type declaration

  • all: ZodArray<ZodObject<{
        balance: ZodString;
        channelEpoch: ZodNumber;
        channelId: ZodString;
        closureTime: ZodNumber;
        destination: ZodString;
        source: ZodString;
        status: ZodString;
        ticketIndex: ZodNumber;
    }, $strip>>
  • incoming: ZodArray<ZodObject<{
        balance: ZodString;
        id: ZodString;
        peerAddress: ZodString;
        status: ZodEnum<{
            Closed: "Closed";
            Open: "Open";
            PendingToClose: "PendingToClose";
        }>;
    }, $strip>>
  • outgoing: ZodArray<ZodObject<{
        balance: ZodString;
        id: ZodString;
        peerAddress: ZodString;
        status: ZodEnum<{
            Closed: "Closed";
            Open: "Open";
            PendingToClose: "PendingToClose";
        }>;
    }, $strip>>