You are here

function KalturaConversionProfileService::getCurrent in Kaltura 6.2

File

kaltura_client/KalturaClient.php, line 5138

Class

KalturaConversionProfileService

Code

function getCurrent() {
  $kparams = array();
  $this->client
    ->queueServiceActionCall("conversionprofile", "getCurrent", $kparams);
  if ($this->client
    ->isMultiRequest()) {
    return null;
  }
  $resultObject = $this->client
    ->doQueue();
  $this->client
    ->throwExceptionIfError($resultObject);
  $this->client
    ->validateObjectType($resultObject, "KalturaConversionProfile");
  return $resultObject;
}