/** * ClimatePartner API Order Service * A Unified API for all ClimatePartner products * * The version of the OpenAPI document: 1.3.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { OrderListProjectSdgsInner } from './order-list-project-sdgs-inner'; export interface OrderListProject { /** * Id of the project */ 'projectId'?: string; /** * Name of the project */ 'projectName'?: string; /** * Title of the project */ 'projectTitle'?: string; /** * Link to the website of the project */ 'projectWebsite'?: string; /** * Amount of kg of C02 available for offsetting with this project */ 'amount'?: number; /** * Price for offsetting 1 kg of CO2 */ 'price'?: string; /** * project country */ 'country'?: string; /** * project region */ 'region'?: string; /** * project technology */ 'technology'?: string; /** * project standard type */ 'standard'?: string; /** * project fact type */ 'type'?: string; /** * offsetting unit */ 'unit'?: string; /** * project currency */ 'currency'?: string; /** * project description */ 'description'?: string; /** * cover photo of the project */ 'coverPhoto'?: string; /** * list of pictures corresponding to the project */ 'images'?: Array; /** * list of sdgs corresponding to the project */ 'sdgs'?: Array; }