2010-10-08 16:58:14 +02:00
|
|
|
<?php
|
2010-10-08 17:01:27 +02:00
|
|
|
/*
|
2011-07-18 22:43:12 +02:00
|
|
|
* This file is part of the BeSimpleSoapBundle.
|
2010-10-08 17:01:27 +02:00
|
|
|
*
|
|
|
|
* (c) Christian Kerl <christian-kerl@web.de>
|
|
|
|
*
|
|
|
|
* This source file is subject to the MIT license that is bundled
|
|
|
|
* with this source code in the file LICENSE.
|
|
|
|
*/
|
2010-10-08 16:58:14 +02:00
|
|
|
|
2011-07-18 22:43:12 +02:00
|
|
|
namespace BeSimple\SoapBundle\Soap;
|
2010-10-08 16:58:14 +02:00
|
|
|
|
|
|
|
class SoapAttachment
|
|
|
|
{
|
|
|
|
private $id;
|
|
|
|
private $type;
|
|
|
|
private $content;
|
|
|
|
|
|
|
|
public function __construct($id, $type, $content)
|
|
|
|
{
|
2011-07-17 10:46:54 +02:00
|
|
|
$this->id = $id;
|
|
|
|
$this->type = $type;
|
2010-10-08 16:58:14 +02:00
|
|
|
$this->content = $content;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getId()
|
|
|
|
{
|
|
|
|
return $this->id;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getType()
|
|
|
|
{
|
|
|
|
return $this->type;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getContent()
|
|
|
|
{
|
|
|
|
return $this->content;
|
|
|
|
}
|
|
|
|
}
|