AAAAhome/academiac/www/plugins/vmcalculation/avalara/classes/Message.class.php000060400000004522151373127540023005 0ustar00Summary; } /** * 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; } } ?>home/academiac/www/plugins/vmcalculation/avalara/classes/BatchSvc/Message.class.php000060400000002742151373477230024510 0ustar00Summary=$value;} // string public function getSummary(){return $this->Summary;} // string public function setDetails($value){$this->Details=$value;} // string public function getDetails(){return $this->Details;} // string public function setHelpLink($value){$this->HelpLink=$value;} // string public function getHelpLink(){return $this->HelpLink;} // string public function setRefersTo($value){$this->RefersTo=$value;} // string public function getRefersTo(){return $this->RefersTo;} // string public function setSeverity($value){$this->Severity=$value;} // SeverityLevel public function getSeverity(){return $this->Severity;} // SeverityLevel public function setSource($value){$this->Source=$value;} // string public function getSource(){return $this->Source;} // string public function setName($value){$this->Name=$value;} // string public function getName(){return $this->Name;} // string } ?>