. * * For more information, contact Colosa Inc, 2566 Le Jeune Rd., * Coral Gables, FL, 33134, USA, or email info@colosa.com. */ /** * Object Document class * * @package workflow.engine.ProcessMaker */class ObjectDocument { public $type; public $name; public $data; public $origin; /** * Constructor */ public function __construct() { $this->type = ''; $this->name = ''; $this->data = ''; $this->origin = ''; } }