<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">&lt;?php
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
            -&gt;setAccount($account);
    }
    /**
     * Get account value
     * @return AccountType
     */
    public function getAccount()
    {
        return $this-&gt;account;
    }
    /**
     * Set account value
     * @param AccountType $account
     * @return CreateAccount
     */
    public function setAccount(AccountType $account = null)
    {
        $this-&gt;account = $account;
        return $this;
    }
}
</pre></body></html>