<?php

namespace Mnm;

use \WsdlToPhp\PackageBase\AbstractStructBase;

/**
 * This class stands for ShipmentCarier StructType
 * @subpackage Structs
 */
class ShipmentCarier extends AbstractStructBase
{
    /**
     * The SenderTcknVkn
     * @var string
     */
    public $SenderTcknVkn;
    /**
     * The SenderName
     * @var string
     */
    public $SenderName;
    /**
     * Constructor method for ShipmentCarier
     * @uses ShipmentCarier::setSenderTcknVkn()
     * @uses ShipmentCarier::setSenderName()
     * @param string $senderTcknVkn
     * @param string $senderName
     */
    public function __construct($senderTcknVkn = null, $senderName = null)
    {
        $this
            ->setSenderTcknVkn($senderTcknVkn)
            ->setSenderName($senderName);
    }
    /**
     * Get SenderTcknVkn value
     * @return string|null
     */
    public function getSenderTcknVkn()
    {
        return $this->SenderTcknVkn;
    }
    /**
     * Set SenderTcknVkn value
     * @param string $senderTcknVkn
     * @return \Mnm\ShipmentCarier
     */
    public function setSenderTcknVkn($senderTcknVkn = null)
    {
        $this->SenderTcknVkn = $senderTcknVkn;
        return $this;
    }
    /**
     * Get SenderName value
     * @return string|null
     */
    public function getSenderName()
    {
        return $this->SenderName;
    }
    /**
     * Set SenderName value
     * @param string $senderName
     * @return \Mnm\ShipmentCarier
     */
    public function setSenderName($senderName = null)
    {
        $this->SenderName = $senderName;
        return $this;
    }
    /**
     * Method called when an object has been exported with var_export() functions
     * It allows to return an object instantiated with the values
     * @see AbstractStructBase::__set_state()
     * @uses AbstractStructBase::__set_state()
     * @param array $array the exported values
     * @return \Mnm\ShipmentCarier
     */
    public static function __set_state(array $array)
    {
        return parent::__set_state($array);
    }
    /**
     * Method returning the class name
     * @return string __CLASS__
     */
    public function __toString()
    {
        return __CLASS__;
    }
}
