for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace SForce\Wsdl;
class AdditionalInformationMap
{
/**
* @var string
*/
protected $name = null;
protected $value = null;
* @param string $name
* @param string $value
public function __construct($name = null, $value = null)
$this->name = $name;
$this->value = $value;
}
* @return string
public function getName()
return $this->name;
* @return \SForce\Wsdl\AdditionalInformationMap
public function setName($name)
return $this;
public function getValue()
return $this->value;
public function setValue($value)