A modest collection of PHP libraries used at SparkFun.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

70 lines
959 B

<?php
namespace SparkLib\UPS\Rate;
class UsernameToken
{
/**
*
* @var string $Username
* @access public
*/
public $Username = null;
/**
*
* @var string $Password
* @access public
*/
public $Password = null;
/**
*
* @param string $Username
* @param string $Password
* @access public
*/
public function __construct($Username = null, $Password = null)
{
$this->Username = $Username;
$this->Password = $Password;
}
/**
*
* @return string
*/
public function getUsername()
{
return $this->Username;
}
/**
*
* @param string $Username
*/
public function setUsername($Username)
{
$this->Username = $Username;
}
/**
*
* @return string
*/
public function getPassword()
{
return $this->Password;
}
/**
*
* @param string $Password
*/
public function setPassword($Password)
{
$this->Password = $Password;
}
}