<?php
use \WsdlToPhp\PackageBase\AbstractStructBase;

/**
 * This class stands for hesapDetaylariInput StructType
 * @subpackage Structs
 */
class HesapDetaylariInput extends AbstractStructBase
{
    /**
     * The musteriNo
     * Meta information extracted from the WSDL
     * - form: unqualified
     * - maxOccurs: 1
     * - minOccurs: 0
     * @var string
     */
    public $musteriNo;
    /**
     * Constructor method for hesapDetaylariInput
     * @uses HesapDetaylariInput::setMusteriNo()
     * @param string $musteriNo
     */
    public function __construct($musteriNo = null)
    {
        $this
            ->setMusteriNo($musteriNo);
    }
    /**
     * Get musteriNo value
     * @return string|null
     */
    public function getMusteriNo()
    {
        return $this->musteriNo;
    }
    /**
     * Set musteriNo value
     * @param string $musteriNo
     * @return HesapDetaylariInput
     */
    public function setMusteriNo($musteriNo = null)
    {
        // validation for constraint: string
        if (!is_null($musteriNo) && !is_string($musteriNo)) {
            throw new \InvalidArgumentException(sprintf('Invalid value %s, please provide a string, %s given', var_export($musteriNo, true), gettype($musteriNo)), __LINE__);
        }
        $this->musteriNo = $musteriNo;
        return $this;
    }
}
