Files
advertising/ShortMessage/top/request/AlibabaAliqinFcFlowQueryRequest.php

48 lines
744 B
PHP
Raw Permalink Normal View History

2019-04-11 15:54:34 +08:00
<?php
/**
* TOP API: alibaba.aliqin.fc.flow.query request
*
* @author auto create
* @since 1.0, 2016.03.30
*/
class AlibabaAliqinFcFlowQueryRequest
{
/**
* 唯一流水号
**/
private $outId;
private $apiParas = array();
public function setOutId($outId)
{
$this->outId = $outId;
$this->apiParas["out_id"] = $outId;
}
public function getOutId()
{
return $this->outId;
}
public function getApiMethodName()
{
return "alibaba.aliqin.fc.flow.query";
}
public function getApiParas()
{
return $this->apiParas;
}
public function check()
{
}
public function putOtherTextParam($key, $value) {
$this->apiParas[$key] = $value;
$this->$key = $value;
}
}