REAPI/extend/sdk/taobao/top/request/RefundsReceiveGetRequest.php

213 lines
4.8 KiB
PHP
Raw Normal View History

2024-09-29 15:43:18 +08:00
<?php
/**
* TOP API: taobao.refunds.receive.get request
*
* @author auto create
* @since 1.0, 2023.11.30
*/
class RefundsReceiveGetRequest
{
/**
* 买家昵称
**/
private $buyerNick;
/**
* 买家OpenId
**/
private $buyerOpenUid;
/**
* 查询修改时间结束。格式: yyyy-MM-dd HH:mm:ss
**/
private $endModified;
/**
* 需要返回的字段。目前支持有refund_id, tid, title, buyer_nick, seller_nick, total_fee, status, created, refund_fee, oid, good_status, company_name, sid, payment, reason, desc, has_good_return, modified, order_status,refund_phase,dispute_type,end_time
**/
private $fields;
/**
* 系统自动生成
**/
private $ouid;
/**
* 页码。取值范围:大于零的整数; 默认值:1
**/
private $pageNo;
/**
* 每页条数。取值范围:大于零的整数; 默认值:40;最大值:100
**/
private $pageSize;
/**
* 查询修改时间开始。格式: yyyy-MM-dd HH:mm:ss
**/
private $startModified;
/**
* 退款状态默认查询所有退款状态的数据除了默认值外每次只能查询一种状态。WAIT_SELLER_AGREE(买家已经申请退款,等待卖家同意) WAIT_BUYER_RETURN_GOODS(卖家已经同意退款,等待买家退货) WAIT_SELLER_CONFIRM_GOODS(买家已经退货,等待卖家确认收货) SELLER_REFUSE_BUYER(卖家拒绝退款) CLOSED(退款关闭) SUCCESS(退款成功)WAIT_BUYER_CONFIRM_EXCHANGE_SELLER_SEND_GOODS(等待买家确认换货卖家发货商品)EXCHANGE_TRANSFORM_TO_REFUND(换货关闭转退款)WAIT_SELLER_CONSIGN_GOODS(商家确认收货等待商家发货)
**/
private $status;
/**
* 交易类型列表一次查询多种类型可用半角逗号分隔默认同时查询guarantee_trade, auto_delivery这两种类型的数据<a href="http://open.taobao.com/doc/detail.htm?id=102855" target="_blank">查看可选值</a>
**/
private $type;
/**
* 是否启用has_next的分页方式如果指定true,则返回的结果中不包含总记录数,但是会新增一个是否存在下一页的的字段,通过此种方式获取增量退款,接口调用成功率在原有的基础上有所提升。
**/
private $useHasNext;
private $apiParas = array();
public function setBuyerNick($buyerNick)
{
$this->buyerNick = $buyerNick;
$this->apiParas["buyer_nick"] = $buyerNick;
}
public function getBuyerNick()
{
return $this->buyerNick;
}
public function setBuyerOpenUid($buyerOpenUid)
{
$this->buyerOpenUid = $buyerOpenUid;
$this->apiParas["buyer_open_uid"] = $buyerOpenUid;
}
public function getBuyerOpenUid()
{
return $this->buyerOpenUid;
}
public function setEndModified($endModified)
{
$this->endModified = $endModified;
$this->apiParas["end_modified"] = $endModified;
}
public function getEndModified()
{
return $this->endModified;
}
public function setFields($fields)
{
$this->fields = $fields;
$this->apiParas["fields"] = $fields;
}
public function getFields()
{
return $this->fields;
}
public function setOuid($ouid)
{
$this->ouid = $ouid;
$this->apiParas["ouid"] = $ouid;
}
public function getOuid()
{
return $this->ouid;
}
public function setPageNo($pageNo)
{
$this->pageNo = $pageNo;
$this->apiParas["page_no"] = $pageNo;
}
public function getPageNo()
{
return $this->pageNo;
}
public function setPageSize($pageSize)
{
$this->pageSize = $pageSize;
$this->apiParas["page_size"] = $pageSize;
}
public function getPageSize()
{
return $this->pageSize;
}
public function setStartModified($startModified)
{
$this->startModified = $startModified;
$this->apiParas["start_modified"] = $startModified;
}
public function getStartModified()
{
return $this->startModified;
}
public function setStatus($status)
{
$this->status = $status;
$this->apiParas["status"] = $status;
}
public function getStatus()
{
return $this->status;
}
public function setType($type)
{
$this->type = $type;
$this->apiParas["type"] = $type;
}
public function getType()
{
return $this->type;
}
public function setUseHasNext($useHasNext)
{
$this->useHasNext = $useHasNext;
$this->apiParas["use_has_next"] = $useHasNext;
}
public function getUseHasNext()
{
return $this->useHasNext;
}
public function getApiMethodName()
{
return "taobao.refunds.receive.get";
}
public function getApiParas()
{
return $this->apiParas;
}
public function check()
{
RequestCheckUtil::checkNotNull($this->fields,"fields");
RequestCheckUtil::checkMaxListSize($this->fields,100,"fields");
RequestCheckUtil::checkMinValue($this->pageNo,1,"pageNo");
RequestCheckUtil::checkMaxValue($this->pageSize,100,"pageSize");
RequestCheckUtil::checkMinValue($this->pageSize,1,"pageSize");
}
public function putOtherTextParam($key, $value) {
$this->apiParas[$key] = $value;
$this->$key = $value;
}
}