xxxxxxxxxx
use \WsdlToPhp\PackageBase\AbstractStructBase;
/**
* This class stands for createAccount StructType
* @subpackage Structs
*/
class CreateAccount extends AbstractStructBase
{
/**
* The account
* Meta information extracted from the WSDL
* - maxOccurs: 1
* - minOccurs: 1
* @var AccountType
*/
public $account;
/**
* Constructor method for createAccount
* @uses CreateAccount::setAccount()
* @param AccountType $account
*/
public function __construct(AccountType $account = null)
{
$this
->setAccount($account);
}
/**
* Get account value
* @return AccountType
*/
public function getAccount()
{
return $this->account;
}
/**
* Set account value
* @param AccountType $account
* @return CreateAccount
*/
public function setAccount(AccountType $account = null)
{
$this->account = $account;
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