for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace SForce\Wsdl;
class EmailFileAttachment
{
/**
* @var base64Binary
*/
protected $body = null;
* @var string
protected $contentType = null;
protected $fileName = null;
* @var ID
protected $id = null;
* @var boolean
protected $inline = null;
* @param string $fileName
public function __construct($fileName = null)
$this->fileName = $fileName;
}
* @return base64Binary
public function getBody()
return $this->body;
* @param base64Binary $body
* @return \SForce\Wsdl\EmailFileAttachment
public function setBody($body)
$this->body = $body;
return $this;
* @return string
public function getContentType()
return $this->contentType;
* @param string $contentType
public function setContentType($contentType)
$this->contentType = $contentType;
public function getFileName()
return $this->fileName;
public function setFileName($fileName)
* @return ID
public function getId()
return $this->id;
* @param ID $id
public function setId($id)
$this->id = $id;
* @return boolean
public function getInline()
return $this->inline;
* @param boolean $inline
public function setInline($inline)
$this->inline = $inline;