UNPKG

channelape-sdk

Version:
11 lines (10 loc) 306 B
import LineItem from './LineItem'; import Adjustment from './Adjustment'; import Transaction from './Transaction'; export default interface Refund { supplierRefundId?: string; channelRefundId?: string; lineItems?: LineItem[]; transactions?: Transaction[]; adjustments?: Adjustment[]; }