UNPKG

@shipengine/connect-fulfillment-provider-api

Version:

OpenAPI specification and TypeScript definitions for the Connect Fulfillment Provider API

29 lines (28 loc) 842 B
/** * @description The standardized type associated with a note */ export declare enum NoteType { BackOrderMessage = "BackOrderMessage", ConditionNote = "ConditionNote", GiftMessage = "GiftMessage", InternalNotes = "InternalNotes", InStockMessage = "InStockMessage", MPN = "MPN", NotesFromBuyer = "NotesFromBuyer", NotesToBuyer = "NotesToBuyer", Other = "Other", OutOfStockMessage = "OutOfStockMessage", Reason = "Reason", SpecialInstructions = "SpecialInstructions", WarningLabel = "WarningLabel", FeedbackMessage = "FeedbackMessage" } /** * @description This represents a note to the buyer, seller, or recipient */ export interface Note { /** @description The type of note being sent */ type: NoteType; /** @description The contents of the note */ text: string; }