import { JsonCustomConvert } from "json2typescript"; /** * @export * @enum {string} */ export declare enum AdjustmentReason { NotAdjusted = 0, SourcingIssue = 1, ReconciledWithGeneralLedger = 2, ExemptCertApplied = 3, PriceAdjusted = 4, ProductReturned = 5, ProductExchanged = 6, BadDebt = 7, Other = 8, Offline = 9 } export declare class AdjustmentReasonConverter implements JsonCustomConvert { serialize(data: AdjustmentReason): AdjustmentReason; deserialize(enumType: string): AdjustmentReason; }