// File generated from our OpenAPI spec declare module 'stripe' { namespace Stripe { namespace Climate { interface SupplierRetrieveParams { /** * Specifies which fields in the response should be expanded. */ expand?: Array; } interface SupplierListParams extends PaginationParams { /** * Specifies which fields in the response should be expanded. */ expand?: Array; } class SuppliersResource { /** * Retrieves a Climate supplier object. */ retrieve( id: string, params?: SupplierRetrieveParams, options?: RequestOptions ): Promise>; retrieve( id: string, options?: RequestOptions ): Promise>; /** * Lists all available Climate supplier objects. */ list( params?: SupplierListParams, options?: RequestOptions ): ApiListPromise; list(options?: RequestOptions): ApiListPromise; } } } }