SalePayment

interface SalePayment {
    token: blockchainData.Types.SalePaymentToken;
    price_excluding_fees: string;
    price_including_fees: string;
    fees: SaleFee[];
}

Properties

SalePayment

price_excluding_fees: string

The base price of the sale not including any fees

SalePayment

price_including_fees: string

The total price of the sale. Includes the sum of all fees

SalePayment

fees: SaleFee[]

The fees associated with this sale

SalePayment