Mayson Monorepo Documentation
    Preparing search index...

    A product_feature represents an attachment between a feature and a product. When a product is purchased that has a feature attached, Stripe will create an entitlement to the feature for the purchasing customer.

    interface ProductFeature {
        id: string;
        object: "product_feature";
        deleted?: void;
        entitlement_feature: Stripe.Entitlements.Feature;
        livemode: boolean;
    }
    Index

    Properties

    id: string

    Unique identifier for the object.

    object: "product_feature"

    String representing the object's type. Objects of the same type share the same value.

    deleted?: void

    Always true for a deleted object

    entitlement_feature: Stripe.Entitlements.Feature

    A feature represents a monetizable ability or functionality in your system. Features can be assigned to products, and when those products are purchased, Stripe will create an entitlement to the feature for the purchasing customer.

    livemode: boolean

    Has the value true if the object exists in live mode or the value false if the object exists in test mode.