Mayson Monorepo Documentation
    Preparing search index...
    interface LineItem {
        discounts?: Emptyable<Stripe.QuoteUpdateParams.LineItem.Discount[]>;
        id?: string;
        price?: string;
        price_data?: Stripe.QuoteUpdateParams.LineItem.PriceData;
        quantity?: number;
        tax_rates?: Emptyable<string[]>;
    }
    Index

    Properties

    The discounts applied to this line item.

    id?: string

    The ID of an existing line item on the quote.

    price?: string

    The ID of the price object. One of price or price_data is required.

    Data used to generate a new Price object inline. One of price or price_data is required.

    quantity?: number

    The quantity of the line item.

    tax_rates?: Emptyable<string[]>

    The tax rates which apply to the line item. When set, the default_tax_rates on the quote do not apply to this line item.