interface RfqOutcome {
    acceptedSequence?: number;
    agreedTerms?: unknown;
    reason?: string;
    state: RfqState;
}

Properties

acceptedSequence?: number

Sequence of the proposal that was accepted.

agreedTerms?: unknown

Set when state === "accepted": the terms that were agreed.

reason?: string

Reason for a reject / abort, if given.

state: RfqState