/**
 * VRt.Packer [PC]
 *
 * The version of the OpenAPI document: 7.18.2755
 * Contact: servicedesk@veeroute.com
 *
 * NOTE: This class is auto generated by OpenAPI Generator.
 * Do not edit the class manually.
 */
import { DimensionsPacker } from './dimensions';
import { PackageTypePacker } from './packageType';
import { AttributePacker } from './attribute';
import { CoordinatesPacker } from './coordinates';
/**
 * Package.
 */
export interface PackagePacker {
    [key: string]: any | any;
    /**
     * Package key, unique identifier.
     */
    key: string;
    type: PackageTypePacker;
    body_dimensions: DimensionsPacker;
    container_dimensions: DimensionsPacker;
    container_coordinates: CoordinatesPacker;
    /**
     * Attributes. Used to add service information.
     */
    attributes?: Array<AttributePacker>;
}
