interface QuoteDraft {
    custom?: CustomFieldsDraft;
    key?: string;
    stagedQuote: StagedQuoteResourceIdentifier;
    stagedQuoteStateToSent?: boolean;
    stagedQuoteVersion: number;
    state?: StateReference;
}

Properties

Custom Fields to be added to the Quote.

- If specified, the Custom Fields are merged with the Custom Fields on the referenced [StagedQuote](/../api/projects/staged-quotes#stagedquote) and added to the Quote.
- If empty, the Custom Fields on the referenced [StagedQuote](/../api/projects/staged-quotes#stagedquote) are added to the Quote automatically.
key?: string

User-defined unique identifier for the Quote.

StagedQuote from which the Quote is created.

stagedQuoteStateToSent?: boolean

If true, the stagedQuoteState of the referenced StagedQuote will be set to Sent.

stagedQuoteVersion: number

Current version of the StagedQuote.

State of the Quote. This reference can point to a State in a custom workflow.

Generated using TypeDoc