/**
 * ClimatePartner API Calculation Service
 * A Unified API for all ClimatePartner products
 *
 * The version of the OpenAPI document: 1.6.4
 *
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
export interface WasteManagement {
    /**
     * weight of waste in tonnes, without container
     */
    'weight': number;
    /**
     * type of waste
     */
    'wasteType': string;
    /**
     * type of disposal
     */
    'disposalType'?: string;
    /**
     * address where the waste is picked up
     */
    'endCustomerAddress': string;
    /**
     * address of the company that delivers the container
     */
    'containerAddress': string;
    /**
     * address of the company that picks up the container
     */
    'wastePickupAddress'?: string;
    /**
     * address where the waste is disposed
     */
    'disposerAddress'?: string;
    /**
     * type of vehicle used to transport the waste
     */
    'vehicleType'?: string;
}
