Added new API calls for external task links

This commit is contained in:
Frederic Guillot
2016-06-26 14:33:53 -04:00
parent b82589e75f
commit 3d34681610
10 changed files with 642 additions and 185 deletions

View File

@@ -152,6 +152,30 @@ class ExternalLinkManager extends Base
return $this;
}
/**
* Set provider type
*
* @access public
* @param string $userInputType
* @return ExternalLinkManager
*/
public function setUserInputType($userInputType)
{
$this->userInputType = $userInputType;
return $this;
}
/**
* Set external link
* @param string $userInputText
* @return ExternalLinkManager
*/
public function setUserInputText($userInputText)
{
$this->userInputText = $userInputText;
return $this;
}
/**
* Find a provider that user input
*