Type alias NewScanDTO

NewScanDTO: {
    constraints?: string;
    timeout?: number;
    type: "offer" | "demand";
}

Type declaration

  • Optional constraints?: string

    optional filter.

  • Optional timeout?: number

    specifies how long an unused iterator will live in the server's memory. The value may be unspecified, defaulting to 30 seconds. This is intended to protect the server from memory leaks in applications that do not clean up their resources.

  • type: "offer" | "demand"

    scan type. offer for offers. demand for demands.