<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">&lt;?php

namespace TaxyCreate\TaxyCreateStruct;

use \WsdlToPhp\PackageBase\AbstractStructBase;

/**
 * This class stands for user_details TaxyCreateStruct
 * @package TaxyCreate
 * @subpackage Structs
 */
class TaxyCreateUser_details extends AbstractStructBase
{
    /**
     * The a_pel_code
     * @var string
     */
    public $a_pel_code;
    /**
     * The a_user_code
     * @var int
     */
    public $a_user_code;
    /**
     * The a_user_pass
     * @var string
     */
    public $a_user_pass;
    /**
     * The a_pel_sub_code
     * @var string
     */
    public $a_pel_sub_code;
    /**
     * Constructor method for user_details
     * @uses TaxyCreateUser_details::setA_pel_code()
     * @uses TaxyCreateUser_details::setA_user_code()
     * @uses TaxyCreateUser_details::setA_user_pass()
     * @uses TaxyCreateUser_details::setA_pel_sub_code()
     * @param string $a_pel_code
     * @param int $a_user_code
     * @param string $a_user_pass
     * @param string $a_pel_sub_code
     */
    public function __construct($a_pel_code = null, $a_user_code = null, $a_user_pass = null, $a_pel_sub_code = null)
    {
        $this
            -&gt;setA_pel_code($a_pel_code)
            -&gt;setA_user_code($a_user_code)
            -&gt;setA_user_pass($a_user_pass)
            -&gt;setA_pel_sub_code($a_pel_sub_code);
    }
    /**
     * Get a_pel_code value
     * @return string|null
     */
    public function getA_pel_code()
    {
        return $this-&gt;a_pel_code;
    }
    /**
     * Set a_pel_code value
     * @param string $a_pel_code
     * @return \TaxyCreate\TaxyCreateStruct\TaxyCreateUser_details
     */
    public function setA_pel_code($a_pel_code = null)
    {
        // validation for constraint: string
        if (!is_null($a_pel_code) &amp;&amp; !is_string($a_pel_code)) {
            throw new \InvalidArgumentException(sprintf('Invalid value %s, please provide a string, %s given', var_export($a_pel_code, true), gettype($a_pel_code)), __LINE__);
        }
        $this-&gt;a_pel_code = $a_pel_code;
        return $this;
    }
    /**
     * Get a_user_code value
     * @return int|null
     */
    public function getA_user_code()
    {
        return $this-&gt;a_user_code;
    }
    /**
     * Set a_user_code value
     * @param int $a_user_code
     * @return \TaxyCreate\TaxyCreateStruct\TaxyCreateUser_details
     */
    public function setA_user_code($a_user_code = null)
    {
        // validation for constraint: int
        if (!is_null($a_user_code) &amp;&amp; !(is_int($a_user_code) || ctype_digit($a_user_code))) {
            throw new \InvalidArgumentException(sprintf('Invalid value %s, please provide an integer value, %s given', var_export($a_user_code, true), gettype($a_user_code)), __LINE__);
        }
        $this-&gt;a_user_code = $a_user_code;
        return $this;
    }
    /**
     * Get a_user_pass value
     * @return string|null
     */
    public function getA_user_pass()
    {
        return $this-&gt;a_user_pass;
    }
    /**
     * Set a_user_pass value
     * @param string $a_user_pass
     * @return \TaxyCreate\TaxyCreateStruct\TaxyCreateUser_details
     */
    public function setA_user_pass($a_user_pass = null)
    {
        // validation for constraint: string
        if (!is_null($a_user_pass) &amp;&amp; !is_string($a_user_pass)) {
            throw new \InvalidArgumentException(sprintf('Invalid value %s, please provide a string, %s given', var_export($a_user_pass, true), gettype($a_user_pass)), __LINE__);
        }
        $this-&gt;a_user_pass = $a_user_pass;
        return $this;
    }
    /**
     * Get a_pel_sub_code value
     * @return string|null
     */
    public function getA_pel_sub_code()
    {
        return $this-&gt;a_pel_sub_code;
    }
    /**
     * Set a_pel_sub_code value
     * @param string $a_pel_sub_code
     * @return \TaxyCreate\TaxyCreateStruct\TaxyCreateUser_details
     */
    public function setA_pel_sub_code($a_pel_sub_code = null)
    {
        // validation for constraint: string
        if (!is_null($a_pel_sub_code) &amp;&amp; !is_string($a_pel_sub_code)) {
            throw new \InvalidArgumentException(sprintf('Invalid value %s, please provide a string, %s given', var_export($a_pel_sub_code, true), gettype($a_pel_sub_code)), __LINE__);
        }
        $this-&gt;a_pel_sub_code = $a_pel_sub_code;
        return $this;
    }
}
</pre></body></html>