123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <?php
- namespace Proto\Api;
- use Google\Protobuf\Internal\GPBType;
- use Google\Protobuf\Internal\RepeatedField;
- use Google\Protobuf\Internal\GPBUtil;
- class UserApplyRefundRejectReq extends \Google\Protobuf\Internal\Message
- {
-
- private $refund_ids;
-
- public function __construct($data = NULL) {
- \GPBMetadata\Api\Order::initOnce();
- parent::__construct($data);
- }
-
- public function getRefundIds()
- {
- return $this->refund_ids;
- }
-
- public function setRefundIds($var)
- {
- $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::INT32);
- $this->refund_ids = $arr;
- return $this;
- }
- }
|