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

    Properties

    The discounts applied to this line item.

    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.