<?php
use \WsdlToPhp\PackageBase\AbstractStructBase;

/**
 * This class stands for getParcelContentList StructType
 * @subpackage Structs
 */
class GetParcelContentList extends AbstractStructBase
{
    /**
     * The idKarta
     * Meta information extracted from the WSDL
     * - maxOccurs: 1
     * - minOccurs: 1
     * @var int
     */
    public $idKarta;
    /**
     * Constructor method for getParcelContentList
     * @uses GetParcelContentList::setIdKarta()
     * @param int $idKarta
     */
    public function __construct($idKarta = null)
    {
        $this
            ->setIdKarta($idKarta);
    }
    /**
     * Get idKarta value
     * @return int
     */
    public function getIdKarta()
    {
        return $this->idKarta;
    }
    /**
     * Set idKarta value
     * @param int $idKarta
     * @return GetParcelContentList
     */
    public function setIdKarta($idKarta = null)
    {
        $this->idKarta = $idKarta;
        return $this;
    }
}
