xxxxxxxxxx
namespace GLS;
use \WsdlToPhp\PackageBase\AbstractStructBase;
/**
* This class stands for cPodPdf Struct
* @subpackage Structs
*/
class CPodPdf extends AbstractStructBase
{
/**
* The file_pdf
* Meta information extracted from the WSDL
* - maxOccurs: 1
* - minOccurs: 1
* @var string
*/
public $file_pdf;
/**
* Constructor method for cPodPdf
* @uses CPodPdf::setFile_pdf()
* @param string $file_pdf
*/
public function __construct($file_pdf = null)
{
$this
->setFile_pdf($file_pdf);
}
/**
* Get file_pdf value
* @return string
*/
public function getFile_pdf()
{
return $this->file_pdf;
}
/**
* Set file_pdf value
* @param string $file_pdf
* @return \GLS\CPodPdf
*/
public function setFile_pdf($file_pdf = null)
{
// validation for constraint: string
if (!is_null($file_pdf) && !is_string($file_pdf)) {
throw new \InvalidArgumentException(sprintf('Invalid value %s, please provide a string, %s given', var_export($file_pdf, true), gettype($file_pdf)), __LINE__);
}
$this->file_pdf = $file_pdf;
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