Type Alias XcmPalletQueryStatus

XcmPalletQueryStatus: Enum<{
    Pending: {
        maybe_match_querier: XcmVersionedLocation | undefined;
        maybe_notify: FixedSizeBinary<2> | undefined;
        responder: XcmVersionedLocation;
        timeout: number;
    };
    Ready: {
        at: number;
        response: XcmVersionedResponse;
    };
    VersionNotifier: {
        is_active: boolean;
        origin: XcmVersionedLocation;
    };
}>