export type payment_FeeItem = { /** * Amount is the fee component value in the smallest currency unit (e.g. cents). */ amount?: number; /** * Type identifies which fee component this line item represents. */ type?: payment_FeeItem.type; }; export declare namespace payment_FeeItem { /** * Type identifies which fee component this line item represents. */ enum type { ACH_FIXED = "achFixed", ACH_PERCENTAGE = "achPercentage", CC_FIXED = "ccFixed", CC_PERCENTAGE = "ccPercentage", CC_INTERNATIONAL_PERCENTAGE = "ccInternationalPercentage", CC_CONVERSION_PERCENTAGE = "ccConversionPercentage", RECURRING_PERCENTAGE = "recurringPercentage", STORE_PERCENTAGE = "storePercentage", INVOICE_PERCENTAGE = "invoicePercentage", ACH_THRESHOLD_EXCEEDED_PERCENTAGE = "achThresholdExceededPercentage" } }