1. Registry
  2. Packages
  3. Stripe Provider
  4. API Docs
  5. ClimateOrder
Viewing docs for Stripe 0.3.0
published on Friday, Aug 14, 2026 by Pulumi
Viewing docs for Stripe 0.3.0
published on Friday, Aug 14, 2026 by Pulumi

    Orders represent your intent to purchase a particular Climate product. When you create an order, the payment is deducted from your merchant balance.

    Create ClimateOrder Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new ClimateOrder(name: string, args: ClimateOrderArgs, opts?: CustomResourceOptions);
    @overload
    def ClimateOrder(resource_name: str,
                     args: ClimateOrderArgs,
                     opts: Optional[ResourceOptions] = None)
    
    @overload
    def ClimateOrder(resource_name: str,
                     opts: Optional[ResourceOptions] = None,
                     product: Optional[str] = None,
                     amount: Optional[float] = None,
                     beneficiary: Optional[ClimateOrderBeneficiaryArgs] = None,
                     currency: Optional[str] = None,
                     metadata: Optional[Mapping[str, str]] = None,
                     metric_tons: Optional[float] = None)
    func NewClimateOrder(ctx *Context, name string, args ClimateOrderArgs, opts ...ResourceOption) (*ClimateOrder, error)
    public ClimateOrder(string name, ClimateOrderArgs args, CustomResourceOptions? opts = null)
    public ClimateOrder(String name, ClimateOrderArgs args)
    public ClimateOrder(String name, ClimateOrderArgs args, CustomResourceOptions options)
    
    type: stripe:ClimateOrder
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "stripe_climate_order" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args ClimateOrderArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args ClimateOrderArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args ClimateOrderArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ClimateOrderArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ClimateOrderArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var climateOrderResource = new Stripe.ClimateOrder("climateOrderResource", new()
    {
        Product = "string",
        Amount = 0.0,
        Beneficiary = new Stripe.Inputs.ClimateOrderBeneficiaryArgs
        {
            PublicName = "string",
        },
        Currency = "string",
        Metadata = 
        {
            { "string", "string" },
        },
        MetricTons = 0.0,
    });
    
    example, err := stripe.NewClimateOrder(ctx, "climateOrderResource", &stripe.ClimateOrderArgs{
    	Product: pulumi.String("string"),
    	Amount:  pulumi.Float64(0),
    	Beneficiary: &stripe.ClimateOrderBeneficiaryArgs{
    		PublicName: pulumi.String("string"),
    	},
    	Currency: pulumi.String("string"),
    	Metadata: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	MetricTons: pulumi.Float64(0),
    })
    
    resource "stripe_climate_order" "climateOrderResource" {
      lifecycle {
        create_before_destroy = true
      }
      product = "string"
      amount  = 0
      beneficiary = {
        public_name = "string"
      }
      currency = "string"
      metadata = {
        "string" = "string"
      }
      metric_tons = 0
    }
    
    var climateOrderResource = new ClimateOrder("climateOrderResource", ClimateOrderArgs.builder()
        .product("string")
        .amount(0.0)
        .beneficiary(ClimateOrderBeneficiaryArgs.builder()
            .publicName("string")
            .build())
        .currency("string")
        .metadata(Map.of("string", "string"))
        .metricTons(0.0)
        .build());
    
    climate_order_resource = stripe.ClimateOrder("climateOrderResource",
        product="string",
        amount=float(0),
        beneficiary={
            "public_name": "string",
        },
        currency="string",
        metadata={
            "string": "string",
        },
        metric_tons=float(0))
    
    const climateOrderResource = new stripe.ClimateOrder("climateOrderResource", {
        product: "string",
        amount: 0,
        beneficiary: {
            publicName: "string",
        },
        currency: "string",
        metadata: {
            string: "string",
        },
        metricTons: 0,
    });
    
    type: stripe:ClimateOrder
    properties:
        amount: 0
        beneficiary:
            publicName: string
        currency: string
        metadata:
            string: string
        metricTons: 0
        product: string
    

    ClimateOrder Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The ClimateOrder resource accepts the following input properties:

    Product string
    Unique ID for the Climate Product this order is purchasing.
    Amount double
    Requested amount of carbon removal units. Either this or metric_tons must be specified.
    Beneficiary ClimateOrderBeneficiary
    Currency string
    Three-letter ISO currency code, in lowercase, representing the currency for this order.
    Metadata Dictionary<string, string>
    Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
    MetricTons double
    Quantity of carbon removal that is included in this order.
    Product string
    Unique ID for the Climate Product this order is purchasing.
    Amount float64
    Requested amount of carbon removal units. Either this or metric_tons must be specified.
    Beneficiary ClimateOrderBeneficiaryArgs
    Currency string
    Three-letter ISO currency code, in lowercase, representing the currency for this order.
    Metadata map[string]string
    Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
    MetricTons float64
    Quantity of carbon removal that is included in this order.
    product string
    Unique ID for the Climate Product this order is purchasing.
    amount number
    Requested amount of carbon removal units. Either this or metric_tons must be specified.
    beneficiary object
    currency string
    Three-letter ISO currency code, in lowercase, representing the currency for this order.
    metadata map(string)
    Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
    metric_tons number
    Quantity of carbon removal that is included in this order.
    product String
    Unique ID for the Climate Product this order is purchasing.
    amount Double
    Requested amount of carbon removal units. Either this or metric_tons must be specified.
    beneficiary ClimateOrderBeneficiary
    currency String
    Three-letter ISO currency code, in lowercase, representing the currency for this order.
    metadata Map<String,String>
    Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
    metricTons Double
    Quantity of carbon removal that is included in this order.
    product string
    Unique ID for the Climate Product this order is purchasing.
    amount number
    Requested amount of carbon removal units. Either this or metric_tons must be specified.
    beneficiary ClimateOrderBeneficiary
    currency string
    Three-letter ISO currency code, in lowercase, representing the currency for this order.
    metadata {[key: string]: string}
    Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
    metricTons number
    Quantity of carbon removal that is included in this order.
    product str
    Unique ID for the Climate Product this order is purchasing.
    amount float
    Requested amount of carbon removal units. Either this or metric_tons must be specified.
    beneficiary ClimateOrderBeneficiaryArgs
    currency str
    Three-letter ISO currency code, in lowercase, representing the currency for this order.
    metadata Mapping[str, str]
    Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
    metric_tons float
    Quantity of carbon removal that is included in this order.
    product String
    Unique ID for the Climate Product this order is purchasing.
    amount Number
    Requested amount of carbon removal units. Either this or metric_tons must be specified.
    beneficiary Property Map
    currency String
    Three-letter ISO currency code, in lowercase, representing the currency for this order.
    metadata Map<String>
    Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
    metricTons Number
    Quantity of carbon removal that is included in this order.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the ClimateOrder resource produces the following output properties:

    AmountFees double
    Total amount of Frontier's service fees in the currency's smallest unit.
    AmountSubtotal double
    Total amount of the carbon removal in the currency's smallest unit.
    AmountTotal double
    Total amount of the order including fees in the currency's smallest unit.
    CanceledAt double
    Time at which the order was canceled. Measured in seconds since the Unix epoch.
    CancellationReason string
    Reason for the cancellation of this order.
    Certificate string
    For delivered orders, a URL to a delivery certificate for the order.
    ConfirmedAt double
    Time at which the order was confirmed. Measured in seconds since the Unix epoch.
    Created double
    Time at which the object was created. Measured in seconds since the Unix epoch.
    DelayedAt double
    Time at which the order's expected_delivery_year was delayed. Measured in seconds since the Unix epoch.
    DeliveredAt double
    Time at which the order was delivered. Measured in seconds since the Unix epoch.
    DeliveryDetails List<ClimateOrderDeliveryDetail>
    Details about the delivery of carbon removal for this order.
    ExpectedDeliveryYear double
    The year this order is expected to be delivered.
    Id string
    The provider-assigned unique ID for this managed resource.
    Livemode bool
    Has the value true if the object exists in live mode or the value false if the object exists in test mode.
    Object string
    String representing the object's type. Objects of the same type share the same value.
    ProductSubstitutedAt double
    Time at which the order's product was substituted for a different product. Measured in seconds since the Unix epoch.
    Status string
    The current status of this order.
    AmountFees float64
    Total amount of Frontier's service fees in the currency's smallest unit.
    AmountSubtotal float64
    Total amount of the carbon removal in the currency's smallest unit.
    AmountTotal float64
    Total amount of the order including fees in the currency's smallest unit.
    CanceledAt float64
    Time at which the order was canceled. Measured in seconds since the Unix epoch.
    CancellationReason string
    Reason for the cancellation of this order.
    Certificate string
    For delivered orders, a URL to a delivery certificate for the order.
    ConfirmedAt float64
    Time at which the order was confirmed. Measured in seconds since the Unix epoch.
    Created float64
    Time at which the object was created. Measured in seconds since the Unix epoch.
    DelayedAt float64
    Time at which the order's expected_delivery_year was delayed. Measured in seconds since the Unix epoch.
    DeliveredAt float64
    Time at which the order was delivered. Measured in seconds since the Unix epoch.
    DeliveryDetails []ClimateOrderDeliveryDetail
    Details about the delivery of carbon removal for this order.
    ExpectedDeliveryYear float64
    The year this order is expected to be delivered.
    Id string
    The provider-assigned unique ID for this managed resource.
    Livemode bool
    Has the value true if the object exists in live mode or the value false if the object exists in test mode.
    Object string
    String representing the object's type. Objects of the same type share the same value.
    ProductSubstitutedAt float64
    Time at which the order's product was substituted for a different product. Measured in seconds since the Unix epoch.
    Status string
    The current status of this order.
    amount_fees number
    Total amount of Frontier's service fees in the currency's smallest unit.
    amount_subtotal number
    Total amount of the carbon removal in the currency's smallest unit.
    amount_total number
    Total amount of the order including fees in the currency's smallest unit.
    canceled_at number
    Time at which the order was canceled. Measured in seconds since the Unix epoch.
    cancellation_reason string
    Reason for the cancellation of this order.
    certificate string
    For delivered orders, a URL to a delivery certificate for the order.
    confirmed_at number
    Time at which the order was confirmed. Measured in seconds since the Unix epoch.
    created number
    Time at which the object was created. Measured in seconds since the Unix epoch.
    delayed_at number
    Time at which the order's expected_delivery_year was delayed. Measured in seconds since the Unix epoch.
    delivered_at number
    Time at which the order was delivered. Measured in seconds since the Unix epoch.
    delivery_details list(object)
    Details about the delivery of carbon removal for this order.
    expected_delivery_year number
    The year this order is expected to be delivered.
    id string
    The provider-assigned unique ID for this managed resource.
    livemode bool
    Has the value true if the object exists in live mode or the value false if the object exists in test mode.
    object string
    String representing the object's type. Objects of the same type share the same value.
    product_substituted_at number
    Time at which the order's product was substituted for a different product. Measured in seconds since the Unix epoch.
    status string
    The current status of this order.
    amountFees Double
    Total amount of Frontier's service fees in the currency's smallest unit.
    amountSubtotal Double
    Total amount of the carbon removal in the currency's smallest unit.
    amountTotal Double
    Total amount of the order including fees in the currency's smallest unit.
    canceledAt Double
    Time at which the order was canceled. Measured in seconds since the Unix epoch.
    cancellationReason String
    Reason for the cancellation of this order.
    certificate String
    For delivered orders, a URL to a delivery certificate for the order.
    confirmedAt Double
    Time at which the order was confirmed. Measured in seconds since the Unix epoch.
    created Double
    Time at which the object was created. Measured in seconds since the Unix epoch.
    delayedAt Double
    Time at which the order's expected_delivery_year was delayed. Measured in seconds since the Unix epoch.
    deliveredAt Double
    Time at which the order was delivered. Measured in seconds since the Unix epoch.
    deliveryDetails List<ClimateOrderDeliveryDetail>
    Details about the delivery of carbon removal for this order.
    expectedDeliveryYear Double
    The year this order is expected to be delivered.
    id String
    The provider-assigned unique ID for this managed resource.
    livemode Boolean
    Has the value true if the object exists in live mode or the value false if the object exists in test mode.
    object String
    String representing the object's type. Objects of the same type share the same value.
    productSubstitutedAt Double
    Time at which the order's product was substituted for a different product. Measured in seconds since the Unix epoch.
    status String
    The current status of this order.
    amountFees number
    Total amount of Frontier's service fees in the currency's smallest unit.
    amountSubtotal number
    Total amount of the carbon removal in the currency's smallest unit.
    amountTotal number
    Total amount of the order including fees in the currency's smallest unit.
    canceledAt number
    Time at which the order was canceled. Measured in seconds since the Unix epoch.
    cancellationReason string
    Reason for the cancellation of this order.
    certificate string
    For delivered orders, a URL to a delivery certificate for the order.
    confirmedAt number
    Time at which the order was confirmed. Measured in seconds since the Unix epoch.
    created number
    Time at which the object was created. Measured in seconds since the Unix epoch.
    delayedAt number
    Time at which the order's expected_delivery_year was delayed. Measured in seconds since the Unix epoch.
    deliveredAt number
    Time at which the order was delivered. Measured in seconds since the Unix epoch.
    deliveryDetails ClimateOrderDeliveryDetail[]
    Details about the delivery of carbon removal for this order.
    expectedDeliveryYear number
    The year this order is expected to be delivered.
    id string
    The provider-assigned unique ID for this managed resource.
    livemode boolean
    Has the value true if the object exists in live mode or the value false if the object exists in test mode.
    object string
    String representing the object's type. Objects of the same type share the same value.
    productSubstitutedAt number
    Time at which the order's product was substituted for a different product. Measured in seconds since the Unix epoch.
    status string
    The current status of this order.
    amount_fees float
    Total amount of Frontier's service fees in the currency's smallest unit.
    amount_subtotal float
    Total amount of the carbon removal in the currency's smallest unit.
    amount_total float
    Total amount of the order including fees in the currency's smallest unit.
    canceled_at float
    Time at which the order was canceled. Measured in seconds since the Unix epoch.
    cancellation_reason str
    Reason for the cancellation of this order.
    certificate str
    For delivered orders, a URL to a delivery certificate for the order.
    confirmed_at float
    Time at which the order was confirmed. Measured in seconds since the Unix epoch.
    created float
    Time at which the object was created. Measured in seconds since the Unix epoch.
    delayed_at float
    Time at which the order's expected_delivery_year was delayed. Measured in seconds since the Unix epoch.
    delivered_at float
    Time at which the order was delivered. Measured in seconds since the Unix epoch.
    delivery_details Sequence[ClimateOrderDeliveryDetail]
    Details about the delivery of carbon removal for this order.
    expected_delivery_year float
    The year this order is expected to be delivered.
    id str
    The provider-assigned unique ID for this managed resource.
    livemode bool
    Has the value true if the object exists in live mode or the value false if the object exists in test mode.
    object str
    String representing the object's type. Objects of the same type share the same value.
    product_substituted_at float
    Time at which the order's product was substituted for a different product. Measured in seconds since the Unix epoch.
    status str
    The current status of this order.
    amountFees Number
    Total amount of Frontier's service fees in the currency's smallest unit.
    amountSubtotal Number
    Total amount of the carbon removal in the currency's smallest unit.
    amountTotal Number
    Total amount of the order including fees in the currency's smallest unit.
    canceledAt Number
    Time at which the order was canceled. Measured in seconds since the Unix epoch.
    cancellationReason String
    Reason for the cancellation of this order.
    certificate String
    For delivered orders, a URL to a delivery certificate for the order.
    confirmedAt Number
    Time at which the order was confirmed. Measured in seconds since the Unix epoch.
    created Number
    Time at which the object was created. Measured in seconds since the Unix epoch.
    delayedAt Number
    Time at which the order's expected_delivery_year was delayed. Measured in seconds since the Unix epoch.
    deliveredAt Number
    Time at which the order was delivered. Measured in seconds since the Unix epoch.
    deliveryDetails List<Property Map>
    Details about the delivery of carbon removal for this order.
    expectedDeliveryYear Number
    The year this order is expected to be delivered.
    id String
    The provider-assigned unique ID for this managed resource.
    livemode Boolean
    Has the value true if the object exists in live mode or the value false if the object exists in test mode.
    object String
    String representing the object's type. Objects of the same type share the same value.
    productSubstitutedAt Number
    Time at which the order's product was substituted for a different product. Measured in seconds since the Unix epoch.
    status String
    The current status of this order.

    Look up Existing ClimateOrder Resource

    Get an existing ClimateOrder resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: ClimateOrderState, opts?: CustomResourceOptions): ClimateOrder
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            amount: Optional[float] = None,
            amount_fees: Optional[float] = None,
            amount_subtotal: Optional[float] = None,
            amount_total: Optional[float] = None,
            beneficiary: Optional[ClimateOrderBeneficiaryArgs] = None,
            canceled_at: Optional[float] = None,
            cancellation_reason: Optional[str] = None,
            certificate: Optional[str] = None,
            confirmed_at: Optional[float] = None,
            created: Optional[float] = None,
            currency: Optional[str] = None,
            delayed_at: Optional[float] = None,
            delivered_at: Optional[float] = None,
            delivery_details: Optional[Sequence[ClimateOrderDeliveryDetailArgs]] = None,
            expected_delivery_year: Optional[float] = None,
            livemode: Optional[bool] = None,
            metadata: Optional[Mapping[str, str]] = None,
            metric_tons: Optional[float] = None,
            object: Optional[str] = None,
            product: Optional[str] = None,
            product_substituted_at: Optional[float] = None,
            status: Optional[str] = None) -> ClimateOrder
    func GetClimateOrder(ctx *Context, name string, id IDInput, state *ClimateOrderState, opts ...ResourceOption) (*ClimateOrder, error)
    public static ClimateOrder Get(string name, Input<string> id, ClimateOrderState? state, CustomResourceOptions? opts = null)
    public static ClimateOrder get(String name, Output<String> id, ClimateOrderState state, CustomResourceOptions options)
    resources:  _:    type: stripe:ClimateOrder    get:      id: ${id}
    import {
      to = stripe_climate_order.example
      id = "${id}"
    }
    
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Amount double
    Requested amount of carbon removal units. Either this or metric_tons must be specified.
    AmountFees double
    Total amount of Frontier's service fees in the currency's smallest unit.
    AmountSubtotal double
    Total amount of the carbon removal in the currency's smallest unit.
    AmountTotal double
    Total amount of the order including fees in the currency's smallest unit.
    Beneficiary ClimateOrderBeneficiary
    CanceledAt double
    Time at which the order was canceled. Measured in seconds since the Unix epoch.
    CancellationReason string
    Reason for the cancellation of this order.
    Certificate string
    For delivered orders, a URL to a delivery certificate for the order.
    ConfirmedAt double
    Time at which the order was confirmed. Measured in seconds since the Unix epoch.
    Created double
    Time at which the object was created. Measured in seconds since the Unix epoch.
    Currency string
    Three-letter ISO currency code, in lowercase, representing the currency for this order.
    DelayedAt double
    Time at which the order's expected_delivery_year was delayed. Measured in seconds since the Unix epoch.
    DeliveredAt double
    Time at which the order was delivered. Measured in seconds since the Unix epoch.
    DeliveryDetails List<ClimateOrderDeliveryDetail>
    Details about the delivery of carbon removal for this order.
    ExpectedDeliveryYear double
    The year this order is expected to be delivered.
    Livemode bool
    Has the value true if the object exists in live mode or the value false if the object exists in test mode.
    Metadata Dictionary<string, string>
    Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
    MetricTons double
    Quantity of carbon removal that is included in this order.
    Object string
    String representing the object's type. Objects of the same type share the same value.
    Product string
    Unique ID for the Climate Product this order is purchasing.
    ProductSubstitutedAt double
    Time at which the order's product was substituted for a different product. Measured in seconds since the Unix epoch.
    Status string
    The current status of this order.
    Amount float64
    Requested amount of carbon removal units. Either this or metric_tons must be specified.
    AmountFees float64
    Total amount of Frontier's service fees in the currency's smallest unit.
    AmountSubtotal float64
    Total amount of the carbon removal in the currency's smallest unit.
    AmountTotal float64
    Total amount of the order including fees in the currency's smallest unit.
    Beneficiary ClimateOrderBeneficiaryArgs
    CanceledAt float64
    Time at which the order was canceled. Measured in seconds since the Unix epoch.
    CancellationReason string
    Reason for the cancellation of this order.
    Certificate string
    For delivered orders, a URL to a delivery certificate for the order.
    ConfirmedAt float64
    Time at which the order was confirmed. Measured in seconds since the Unix epoch.
    Created float64
    Time at which the object was created. Measured in seconds since the Unix epoch.
    Currency string
    Three-letter ISO currency code, in lowercase, representing the currency for this order.
    DelayedAt float64
    Time at which the order's expected_delivery_year was delayed. Measured in seconds since the Unix epoch.
    DeliveredAt float64
    Time at which the order was delivered. Measured in seconds since the Unix epoch.
    DeliveryDetails []ClimateOrderDeliveryDetailArgs
    Details about the delivery of carbon removal for this order.
    ExpectedDeliveryYear float64
    The year this order is expected to be delivered.
    Livemode bool
    Has the value true if the object exists in live mode or the value false if the object exists in test mode.
    Metadata map[string]string
    Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
    MetricTons float64
    Quantity of carbon removal that is included in this order.
    Object string
    String representing the object's type. Objects of the same type share the same value.
    Product string
    Unique ID for the Climate Product this order is purchasing.
    ProductSubstitutedAt float64
    Time at which the order's product was substituted for a different product. Measured in seconds since the Unix epoch.
    Status string
    The current status of this order.
    amount number
    Requested amount of carbon removal units. Either this or metric_tons must be specified.
    amount_fees number
    Total amount of Frontier's service fees in the currency's smallest unit.
    amount_subtotal number
    Total amount of the carbon removal in the currency's smallest unit.
    amount_total number
    Total amount of the order including fees in the currency's smallest unit.
    beneficiary object
    canceled_at number
    Time at which the order was canceled. Measured in seconds since the Unix epoch.
    cancellation_reason string
    Reason for the cancellation of this order.
    certificate string
    For delivered orders, a URL to a delivery certificate for the order.
    confirmed_at number
    Time at which the order was confirmed. Measured in seconds since the Unix epoch.
    created number
    Time at which the object was created. Measured in seconds since the Unix epoch.
    currency string
    Three-letter ISO currency code, in lowercase, representing the currency for this order.
    delayed_at number
    Time at which the order's expected_delivery_year was delayed. Measured in seconds since the Unix epoch.
    delivered_at number
    Time at which the order was delivered. Measured in seconds since the Unix epoch.
    delivery_details list(object)
    Details about the delivery of carbon removal for this order.
    expected_delivery_year number
    The year this order is expected to be delivered.
    livemode bool
    Has the value true if the object exists in live mode or the value false if the object exists in test mode.
    metadata map(string)
    Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
    metric_tons number
    Quantity of carbon removal that is included in this order.
    object string
    String representing the object's type. Objects of the same type share the same value.
    product string
    Unique ID for the Climate Product this order is purchasing.
    product_substituted_at number
    Time at which the order's product was substituted for a different product. Measured in seconds since the Unix epoch.
    status string
    The current status of this order.
    amount Double
    Requested amount of carbon removal units. Either this or metric_tons must be specified.
    amountFees Double
    Total amount of Frontier's service fees in the currency's smallest unit.
    amountSubtotal Double
    Total amount of the carbon removal in the currency's smallest unit.
    amountTotal Double
    Total amount of the order including fees in the currency's smallest unit.
    beneficiary ClimateOrderBeneficiary
    canceledAt Double
    Time at which the order was canceled. Measured in seconds since the Unix epoch.
    cancellationReason String
    Reason for the cancellation of this order.
    certificate String
    For delivered orders, a URL to a delivery certificate for the order.
    confirmedAt Double
    Time at which the order was confirmed. Measured in seconds since the Unix epoch.
    created Double
    Time at which the object was created. Measured in seconds since the Unix epoch.
    currency String
    Three-letter ISO currency code, in lowercase, representing the currency for this order.
    delayedAt Double
    Time at which the order's expected_delivery_year was delayed. Measured in seconds since the Unix epoch.
    deliveredAt Double
    Time at which the order was delivered. Measured in seconds since the Unix epoch.
    deliveryDetails List<ClimateOrderDeliveryDetail>
    Details about the delivery of carbon removal for this order.
    expectedDeliveryYear Double
    The year this order 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.
    metadata Map<String,String>
    Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
    metricTons Double
    Quantity of carbon removal that is included in this order.
    object String
    String representing the object's type. Objects of the same type share the same value.
    product String
    Unique ID for the Climate Product this order is purchasing.
    productSubstitutedAt Double
    Time at which the order's product was substituted for a different product. Measured in seconds since the Unix epoch.
    status String
    The current status of this order.
    amount number
    Requested amount of carbon removal units. Either this or metric_tons must be specified.
    amountFees number
    Total amount of Frontier's service fees in the currency's smallest unit.
    amountSubtotal number
    Total amount of the carbon removal in the currency's smallest unit.
    amountTotal number
    Total amount of the order including fees in the currency's smallest unit.
    beneficiary ClimateOrderBeneficiary
    canceledAt number
    Time at which the order was canceled. Measured in seconds since the Unix epoch.
    cancellationReason string
    Reason for the cancellation of this order.
    certificate string
    For delivered orders, a URL to a delivery certificate for the order.
    confirmedAt number
    Time at which the order was confirmed. Measured in seconds since the Unix epoch.
    created number
    Time at which the object was created. Measured in seconds since the Unix epoch.
    currency string
    Three-letter ISO currency code, in lowercase, representing the currency for this order.
    delayedAt number
    Time at which the order's expected_delivery_year was delayed. Measured in seconds since the Unix epoch.
    deliveredAt number
    Time at which the order was delivered. Measured in seconds since the Unix epoch.
    deliveryDetails ClimateOrderDeliveryDetail[]
    Details about the delivery of carbon removal for this order.
    expectedDeliveryYear number
    The year this order 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.
    metadata {[key: string]: string}
    Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
    metricTons number
    Quantity of carbon removal that is included in this order.
    object string
    String representing the object's type. Objects of the same type share the same value.
    product string
    Unique ID for the Climate Product this order is purchasing.
    productSubstitutedAt number
    Time at which the order's product was substituted for a different product. Measured in seconds since the Unix epoch.
    status string
    The current status of this order.
    amount float
    Requested amount of carbon removal units. Either this or metric_tons must be specified.
    amount_fees float
    Total amount of Frontier's service fees in the currency's smallest unit.
    amount_subtotal float
    Total amount of the carbon removal in the currency's smallest unit.
    amount_total float
    Total amount of the order including fees in the currency's smallest unit.
    beneficiary ClimateOrderBeneficiaryArgs
    canceled_at float
    Time at which the order was canceled. Measured in seconds since the Unix epoch.
    cancellation_reason str
    Reason for the cancellation of this order.
    certificate str
    For delivered orders, a URL to a delivery certificate for the order.
    confirmed_at float
    Time at which the order was confirmed. Measured in seconds since the Unix epoch.
    created float
    Time at which the object was created. Measured in seconds since the Unix epoch.
    currency str
    Three-letter ISO currency code, in lowercase, representing the currency for this order.
    delayed_at float
    Time at which the order's expected_delivery_year was delayed. Measured in seconds since the Unix epoch.
    delivered_at float
    Time at which the order was delivered. Measured in seconds since the Unix epoch.
    delivery_details Sequence[ClimateOrderDeliveryDetailArgs]
    Details about the delivery of carbon removal for this order.
    expected_delivery_year float
    The year this order is expected to be delivered.
    livemode bool
    Has the value true if the object exists in live mode or the value false if the object exists in test mode.
    metadata Mapping[str, str]
    Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
    metric_tons float
    Quantity of carbon removal that is included in this order.
    object str
    String representing the object's type. Objects of the same type share the same value.
    product str
    Unique ID for the Climate Product this order is purchasing.
    product_substituted_at float
    Time at which the order's product was substituted for a different product. Measured in seconds since the Unix epoch.
    status str
    The current status of this order.
    amount Number
    Requested amount of carbon removal units. Either this or metric_tons must be specified.
    amountFees Number
    Total amount of Frontier's service fees in the currency's smallest unit.
    amountSubtotal Number
    Total amount of the carbon removal in the currency's smallest unit.
    amountTotal Number
    Total amount of the order including fees in the currency's smallest unit.
    beneficiary Property Map
    canceledAt Number
    Time at which the order was canceled. Measured in seconds since the Unix epoch.
    cancellationReason String
    Reason for the cancellation of this order.
    certificate String
    For delivered orders, a URL to a delivery certificate for the order.
    confirmedAt Number
    Time at which the order was confirmed. Measured in seconds since the Unix epoch.
    created Number
    Time at which the object was created. Measured in seconds since the Unix epoch.
    currency String
    Three-letter ISO currency code, in lowercase, representing the currency for this order.
    delayedAt Number
    Time at which the order's expected_delivery_year was delayed. Measured in seconds since the Unix epoch.
    deliveredAt Number
    Time at which the order was delivered. Measured in seconds since the Unix epoch.
    deliveryDetails List<Property Map>
    Details about the delivery of carbon removal for this order.
    expectedDeliveryYear Number
    The year this order 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.
    metadata Map<String>
    Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
    metricTons Number
    Quantity of carbon removal that is included in this order.
    object String
    String representing the object's type. Objects of the same type share the same value.
    product String
    Unique ID for the Climate Product this order is purchasing.
    productSubstitutedAt Number
    Time at which the order's product was substituted for a different product. Measured in seconds since the Unix epoch.
    status String
    The current status of this order.

    Supporting Types

    ClimateOrderBeneficiary, ClimateOrderBeneficiaryArgs

    PublicName string
    Publicly displayable name for the end beneficiary of carbon removal.
    PublicName string
    Publicly displayable name for the end beneficiary of carbon removal.
    public_name string
    Publicly displayable name for the end beneficiary of carbon removal.
    publicName String
    Publicly displayable name for the end beneficiary of carbon removal.
    publicName string
    Publicly displayable name for the end beneficiary of carbon removal.
    public_name str
    Publicly displayable name for the end beneficiary of carbon removal.
    publicName String
    Publicly displayable name for the end beneficiary of carbon removal.

    ClimateOrderDeliveryDetail, ClimateOrderDeliveryDetailArgs

    DeliveredAt double
    Time at which the delivery occurred. Measured in seconds since the Unix epoch.
    Location ClimateOrderDeliveryDetailLocation
    Specific location of this delivery.
    MetricTons string
    Quantity of carbon removal supplied by this delivery.
    RegistryUrl string
    Once retired, a URL to the registry entry for the tons from this delivery.
    Supplier string
    A supplier of carbon removal.
    DeliveredAt float64
    Time at which the delivery occurred. Measured in seconds since the Unix epoch.
    Location ClimateOrderDeliveryDetailLocation
    Specific location of this delivery.
    MetricTons string
    Quantity of carbon removal supplied by this delivery.
    RegistryUrl string
    Once retired, a URL to the registry entry for the tons from this delivery.
    Supplier string
    A supplier of carbon removal.
    delivered_at number
    Time at which the delivery occurred. Measured in seconds since the Unix epoch.
    location object
    Specific location of this delivery.
    metric_tons string
    Quantity of carbon removal supplied by this delivery.
    registry_url string
    Once retired, a URL to the registry entry for the tons from this delivery.
    supplier string
    A supplier of carbon removal.
    deliveredAt Double
    Time at which the delivery occurred. Measured in seconds since the Unix epoch.
    location ClimateOrderDeliveryDetailLocation
    Specific location of this delivery.
    metricTons String
    Quantity of carbon removal supplied by this delivery.
    registryUrl String
    Once retired, a URL to the registry entry for the tons from this delivery.
    supplier String
    A supplier of carbon removal.
    deliveredAt number
    Time at which the delivery occurred. Measured in seconds since the Unix epoch.
    location ClimateOrderDeliveryDetailLocation
    Specific location of this delivery.
    metricTons string
    Quantity of carbon removal supplied by this delivery.
    registryUrl string
    Once retired, a URL to the registry entry for the tons from this delivery.
    supplier string
    A supplier of carbon removal.
    delivered_at float
    Time at which the delivery occurred. Measured in seconds since the Unix epoch.
    location ClimateOrderDeliveryDetailLocation
    Specific location of this delivery.
    metric_tons str
    Quantity of carbon removal supplied by this delivery.
    registry_url str
    Once retired, a URL to the registry entry for the tons from this delivery.
    supplier str
    A supplier of carbon removal.
    deliveredAt Number
    Time at which the delivery occurred. Measured in seconds since the Unix epoch.
    location Property Map
    Specific location of this delivery.
    metricTons String
    Quantity of carbon removal supplied by this delivery.
    registryUrl String
    Once retired, a URL to the registry entry for the tons from this delivery.
    supplier String
    A supplier of carbon removal.

    ClimateOrderDeliveryDetailLocation, ClimateOrderDeliveryDetailLocationArgs

    City string
    The city where the supplier is located.
    Country string
    Two-letter ISO code representing the country where the supplier is located.
    Latitude double
    The geographic latitude where the supplier is located.
    Longitude double
    The geographic longitude where the supplier is located.
    Region string
    The state/county/province/region where the supplier is located.
    City string
    The city where the supplier is located.
    Country string
    Two-letter ISO code representing the country where the supplier is located.
    Latitude float64
    The geographic latitude where the supplier is located.
    Longitude float64
    The geographic longitude where the supplier is located.
    Region string
    The state/county/province/region where the supplier is located.
    city string
    The city where the supplier is located.
    country string
    Two-letter ISO code representing the country where the supplier is located.
    latitude number
    The geographic latitude where the supplier is located.
    longitude number
    The geographic longitude where the supplier is located.
    region string
    The state/county/province/region where the supplier is located.
    city String
    The city where the supplier is located.
    country String
    Two-letter ISO code representing the country where the supplier is located.
    latitude Double
    The geographic latitude where the supplier is located.
    longitude Double
    The geographic longitude where the supplier is located.
    region String
    The state/county/province/region where the supplier is located.
    city string
    The city where the supplier is located.
    country string
    Two-letter ISO code representing the country where the supplier is located.
    latitude number
    The geographic latitude where the supplier is located.
    longitude number
    The geographic longitude where the supplier is located.
    region string
    The state/county/province/region where the supplier is located.
    city str
    The city where the supplier is located.
    country str
    Two-letter ISO code representing the country where the supplier is located.
    latitude float
    The geographic latitude where the supplier is located.
    longitude float
    The geographic longitude where the supplier is located.
    region str
    The state/county/province/region where the supplier is located.
    city String
    The city where the supplier is located.
    country String
    Two-letter ISO code representing the country where the supplier is located.
    latitude Number
    The geographic latitude where the supplier is located.
    longitude Number
    The geographic longitude where the supplier is located.
    region String
    The state/county/province/region where the supplier is located.

    Package Details

    Repository
    stripe stripe/terraform-provider-stripe
    License
    Notes
    This Pulumi package is based on the stripe Terraform Provider.
    Viewing docs for Stripe 0.3.0
    published on Friday, Aug 14, 2026 by Pulumi

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial