| Server IP : 87.98.231.4 / Your IP : 216.73.217.37 [ Web Server : Apache System : Linux webm007.cluster103.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64 User : grupmartgn ( 667608) PHP Version : 8.5.7 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl Domains : 2 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/g/r/u/grupmartgn/elanartcrafts/plugins/vmcalculation/avalara/classes/ |
Upload File : |
<?php
/**
* Message.class.php
*/
/**
* Message class used in results and exceptions.
* Contains status detail about call results.
*
* @package Address
* @author Avalara
* @copyright � 2004 - 2011 Avalara, Inc. All rights reserved.
*/
class Message
{
private $Summary;
private $Details;
private $HelpLink;
private $RefersTo;
private $Severity;
private $Source;
private $Name;
/**
* Gets the concise summary of the message.
*
* @return string
*/
public function getSummary() { return $this->Summary; }
/**
* Gets the details of the message.
*
* @return string
*/
public function getDetails() { return $this->Details; }
/**
*Gets the URL to help page for this message.
*
* @return unknown
*/
public function getHelpLink() { return $this->HelpLink; }
/**
* Gets the item the message refers to, if applicable. Used to indicate a missing or incorrect value.
*
* @return unknown
*/
public function getRefersTo() { return $this->RefersTo; }
/**
* Gets the Severity Level of the message.
*
* @return unknown
*/
public function getSeverity() { return $this->Severity; }
/**
* Gets the source of the message.
*
* @return unknown
*/
public function getSource() { return $this->Source; }
/**
* Gets the name of the message.
*
* @return unknown
*/
public function getName() { return $this->Name; }
// mutators
public function setSummary($value) { $this->Summary = $value; return $this; }
public function setDetails($value) { $this->Details = $value; return $this; }
public function setHelpLink($value) { $this->HelpLink = $value; return $this; }
public function setRefersTo($value) { $this->RefersTo = $value; return $this; }
public function setSeverity($value) { SeverityLevel::Validate($value); $this->Severity = $value; return $this; }
public function setSource($value) { $this->Source = $value; return $this; }
public function setName($value) { $this->Name = $value; return $this; }
}
?>