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

namespace TaxyTrack\TaxyTrackStruct;

use \WsdlToPhp\PackageBase\AbstractStructBase;

/**
 * This class stands for tt_rec TaxyTrackStruct
 * @package TaxyTrack
 * @subpackage Structs
 */
class TaxyTrackTt_rec extends AbstractStructBase
{
    /**
     * The tt_date
     * @var string
     */
    public $tt_date;
    /**
     * The tt_time
     * @var string
     */
    public $tt_time;
    /**
     * The tt_station_code
     * @var string
     */
    public $tt_station_code;
    /**
     * The tt_station_title
     * @var string
     */
    public $tt_station_title;
    /**
     * The tt_status_code
     * @var string
     */
    public $tt_status_code;
    /**
     * The tt_status_title
     * @var string
     */
    public $tt_status_title;
    /**
     * The tt_remarks
     * @var string
     */
    public $tt_remarks;
    /**
     * Constructor method for tt_rec
     * @uses TaxyTrackTt_rec::setTt_date()
     * @uses TaxyTrackTt_rec::setTt_time()
     * @uses TaxyTrackTt_rec::setTt_station_code()
     * @uses TaxyTrackTt_rec::setTt_station_title()
     * @uses TaxyTrackTt_rec::setTt_status_code()
     * @uses TaxyTrackTt_rec::setTt_status_title()
     * @uses TaxyTrackTt_rec::setTt_remarks()
     * @param string $tt_date
     * @param string $tt_time
     * @param string $tt_station_code
     * @param string $tt_station_title
     * @param string $tt_status_code
     * @param string $tt_status_title
     * @param string $tt_remarks
     */
    public function __construct($tt_date = null, $tt_time = null, $tt_station_code = null, $tt_station_title = null, $tt_status_code = null, $tt_status_title = null, $tt_remarks = null)
    {
        $this
            -&gt;setTt_date($tt_date)
            -&gt;setTt_time($tt_time)
            -&gt;setTt_station_code($tt_station_code)
            -&gt;setTt_station_title($tt_station_title)
            -&gt;setTt_status_code($tt_status_code)
            -&gt;setTt_status_title($tt_status_title)
            -&gt;setTt_remarks($tt_remarks);
    }
    /**
     * Get tt_date value
     * @return string|null
     */
    public function getTt_date()
    {
        return $this-&gt;tt_date;
    }
    /**
     * Set tt_date value
     * @param string $tt_date
     * @return \TaxyTrack\TaxyTrackStruct\TaxyTrackTt_rec
     */
    public function setTt_date($tt_date = null)
    {
        // validation for constraint: string
        if (!is_null($tt_date) &amp;&amp; !is_string($tt_date)) {
            throw new \InvalidArgumentException(sprintf('Invalid value %s, please provide a string, %s given', var_export($tt_date, true), gettype($tt_date)), __LINE__);
        }
        $this-&gt;tt_date = $tt_date;
        return $this;
    }
    /**
     * Get tt_time value
     * @return string|null
     */
    public function getTt_time()
    {
        return $this-&gt;tt_time;
    }
    /**
     * Set tt_time value
     * @param string $tt_time
     * @return \TaxyTrack\TaxyTrackStruct\TaxyTrackTt_rec
     */
    public function setTt_time($tt_time = null)
    {
        // validation for constraint: string
        if (!is_null($tt_time) &amp;&amp; !is_string($tt_time)) {
            throw new \InvalidArgumentException(sprintf('Invalid value %s, please provide a string, %s given', var_export($tt_time, true), gettype($tt_time)), __LINE__);
        }
        $this-&gt;tt_time = $tt_time;
        return $this;
    }
    /**
     * Get tt_station_code value
     * @return string|null
     */
    public function getTt_station_code()
    {
        return $this-&gt;tt_station_code;
    }
    /**
     * Set tt_station_code value
     * @param string $tt_station_code
     * @return \TaxyTrack\TaxyTrackStruct\TaxyTrackTt_rec
     */
    public function setTt_station_code($tt_station_code = null)
    {
        // validation for constraint: string
        if (!is_null($tt_station_code) &amp;&amp; !is_string($tt_station_code)) {
            throw new \InvalidArgumentException(sprintf('Invalid value %s, please provide a string, %s given', var_export($tt_station_code, true), gettype($tt_station_code)), __LINE__);
        }
        $this-&gt;tt_station_code = $tt_station_code;
        return $this;
    }
    /**
     * Get tt_station_title value
     * @return string|null
     */
    public function getTt_station_title()
    {
        return $this-&gt;tt_station_title;
    }
    /**
     * Set tt_station_title value
     * @param string $tt_station_title
     * @return \TaxyTrack\TaxyTrackStruct\TaxyTrackTt_rec
     */
    public function setTt_station_title($tt_station_title = null)
    {
        // validation for constraint: string
        if (!is_null($tt_station_title) &amp;&amp; !is_string($tt_station_title)) {
            throw new \InvalidArgumentException(sprintf('Invalid value %s, please provide a string, %s given', var_export($tt_station_title, true), gettype($tt_station_title)), __LINE__);
        }
        $this-&gt;tt_station_title = $tt_station_title;
        return $this;
    }
    /**
     * Get tt_status_code value
     * @return string|null
     */
    public function getTt_status_code()
    {
        return $this-&gt;tt_status_code;
    }
    /**
     * Set tt_status_code value
     * @param string $tt_status_code
     * @return \TaxyTrack\TaxyTrackStruct\TaxyTrackTt_rec
     */
    public function setTt_status_code($tt_status_code = null)
    {
        // validation for constraint: string
        if (!is_null($tt_status_code) &amp;&amp; !is_string($tt_status_code)) {
            throw new \InvalidArgumentException(sprintf('Invalid value %s, please provide a string, %s given', var_export($tt_status_code, true), gettype($tt_status_code)), __LINE__);
        }
        $this-&gt;tt_status_code = $tt_status_code;
        return $this;
    }
    /**
     * Get tt_status_title value
     * @return string|null
     */
    public function getTt_status_title()
    {
        return $this-&gt;tt_status_title;
    }
    /**
     * Set tt_status_title value
     * @param string $tt_status_title
     * @return \TaxyTrack\TaxyTrackStruct\TaxyTrackTt_rec
     */
    public function setTt_status_title($tt_status_title = null)
    {
        // validation for constraint: string
        if (!is_null($tt_status_title) &amp;&amp; !is_string($tt_status_title)) {
            throw new \InvalidArgumentException(sprintf('Invalid value %s, please provide a string, %s given', var_export($tt_status_title, true), gettype($tt_status_title)), __LINE__);
        }
        $this-&gt;tt_status_title = $tt_status_title;
        return $this;
    }
    /**
     * Get tt_remarks value
     * @return string|null
     */
    public function getTt_remarks()
    {
        return $this-&gt;tt_remarks;
    }
    /**
     * Set tt_remarks value
     * @param string $tt_remarks
     * @return \TaxyTrack\TaxyTrackStruct\TaxyTrackTt_rec
     */
    public function setTt_remarks($tt_remarks = null)
    {
        // validation for constraint: string
        if (!is_null($tt_remarks) &amp;&amp; !is_string($tt_remarks)) {
            throw new \InvalidArgumentException(sprintf('Invalid value %s, please provide a string, %s given', var_export($tt_remarks, true), gettype($tt_remarks)), __LINE__);
        }
        $this-&gt;tt_remarks = $tt_remarks;
        return $this;
    }
}
</pre></body></html>