export LineItem

interface LineItem {
    amount?: Amount;
    external_id?: null | string;
    memo?: null | string;
    order?: number;
    type?: null | string;
}

Properties

amount?: Amount
external_id?: null | string
memo?: null | string
order?: number
type?: null | string