xxxxxxxxxx
use \WsdlToPhp\PackageBase\AbstractStructBase;
/**
* This class stands for setAktywnaKarta StructType
* @subpackage Structs
*/
class SetAktywnaKarta extends AbstractStructBase
{
/**
* The idKarta
* Meta information extracted from the WSDL
* - maxOccurs: 1
* - minOccurs: 1
* @var int
*/
public $idKarta;
/**
* Constructor method for setAktywnaKarta
* @uses SetAktywnaKarta::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 SetAktywnaKarta
*/
public function setIdKarta($idKarta = null)
{
// validation for constraint: int
if (!is_null($idKarta) && !(is_int($idKarta) || ctype_digit($idKarta))) {
throw new \InvalidArgumentException(sprintf('Invalid value %s, please provide an integer value, %s given', var_export($idKarta, true), gettype($idKarta)), __LINE__);
}
$this->idKarta = $idKarta;
return $this;
}
}
Don't be shy, don't hesitate to contact us for any subject, we'll be glad to help.
This platform is provided to give developpers and non developpers a way to easily consume SOAP Web Services or share their own SOAP Web Services with extra features powered by the platform.
© 2025 Providr.IO