123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <?php
- # Generated by the protocol buffer compiler. DO NOT EDIT!
- # NO CHECKED-IN PROTOBUF GENCODE
- # source: api/Order.proto
- namespace Proto\Api;
- use Google\Protobuf\Internal\GPBType;
- use Google\Protobuf\Internal\RepeatedField;
- use Google\Protobuf\Internal\GPBUtil;
- /**
- * Generated from protobuf message <code>proto.api.UserApplyRefundRejectReq</code>
- */
- class UserApplyRefundRejectReq extends \Google\Protobuf\Internal\Message
- {
- /**
- * 申请退款id 数组
- *
- * Generated from protobuf field <code>repeated int32 refund_ids = 1;</code>
- */
- private $refund_ids;
- /**
- * Constructor.
- *
- * @param array $data {
- * Optional. Data for populating the Message object.
- *
- * @type array<int>|\Google\Protobuf\Internal\RepeatedField $refund_ids
- * 申请退款id 数组
- * }
- */
- public function __construct($data = NULL) {
- \GPBMetadata\Api\Order::initOnce();
- parent::__construct($data);
- }
- /**
- * 申请退款id 数组
- *
- * Generated from protobuf field <code>repeated int32 refund_ids = 1;</code>
- * @return \Google\Protobuf\Internal\RepeatedField
- */
- public function getRefundIds()
- {
- return $this->refund_ids;
- }
- /**
- * 申请退款id 数组
- *
- * Generated from protobuf field <code>repeated int32 refund_ids = 1;</code>
- * @param array<int>|\Google\Protobuf\Internal\RepeatedField $var
- * @return $this
- */
- public function setRefundIds($var)
- {
- $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::INT32);
- $this->refund_ids = $arr;
- return $this;
- }
- }
|