Mayson Monorepo Documentation
    Preparing search index...

    A Climate product represents a type of carbon removal unit available for reservation. You can retrieve it to see the current price and availability.

    interface Product {
        id: string;
        object: "climate.product";
        created: number;
        current_prices_per_metric_ton: { [key: string]: CurrentPricesPerMetricTon };
        delivery_year: number;
        livemode: boolean;
        metric_tons_available: string;
        name: string;
        suppliers: Stripe.Climate.Supplier[];
    }
    Index

    Properties

    id: string

    Unique identifier for the object. For convenience, Climate product IDs are human-readable strings that start with climsku_. See carbon removal inventory for a list of available carbon removal products.

    object: "climate.product"

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

    created: number

    Time at which the object was created. Measured in seconds since the Unix epoch.

    current_prices_per_metric_ton: { [key: string]: CurrentPricesPerMetricTon }

    Current prices for a metric ton of carbon removal in a currency's smallest unit.

    delivery_year: number

    The year in which the carbon removal is expected to be delivered.

    livemode: boolean

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

    metric_tons_available: string

    The quantity of metric tons available for reservation.

    name: string

    The Climate product's name.

    suppliers: Stripe.Climate.Supplier[]

    The carbon removal suppliers that fulfill orders for this Climate product.