Interface QuoteRequestChangeQuoteRequestStateAction

Transitions the Quote Request to a different state. A Buyer is only allowed to cancel a Quote Request when it is in Submitted state.

interface QuoteRequestChangeQuoteRequestStateAction {
    action: "changeQuoteRequestState";
    quoteRequestState: string;
}

Properties

action: "changeQuoteRequestState"
quoteRequestState: string

New state to be set for the Quote Request.

Generated using TypeDoc