proto.api.ListPackageReq */ class ListPackageReq extends \Google\Protobuf\Internal\Message { /** * 分页参数 * * Generated from protobuf field .proto.api.PageArg page_arg = 1; */ protected $page_arg = null; /** * 门店筛选参数 * * Generated from protobuf field .proto.api.ShopArg shop_arg = 2; */ protected $shop_arg = null; /** * 套餐分类 * * Generated from protobuf field .proto.api.DEVICE_USE_TYPE package_category = 3; */ protected $package_category = 0; /** * 上下架状态 * * Generated from protobuf field .proto.api.LISTED_STATUS listed_status = 4; */ protected $listed_status = 0; /** * Constructor. * * @param array $data { * Optional. Data for populating the Message object. * * @type \Proto\Api\PageArg $page_arg * 分页参数 * @type \Proto\Api\ShopArg $shop_arg * 门店筛选参数 * @type int $package_category * 套餐分类 * @type int $listed_status * 上下架状态 * } */ public function __construct($data = NULL) { \GPBMetadata\Api\CityPackage::initOnce(); parent::__construct($data); } /** * 分页参数 * * Generated from protobuf field .proto.api.PageArg page_arg = 1; * @return \Proto\Api\PageArg|null */ public function getPageArg() { return $this->page_arg; } public function hasPageArg() { return isset($this->page_arg); } public function clearPageArg() { unset($this->page_arg); } /** * 分页参数 * * Generated from protobuf field .proto.api.PageArg page_arg = 1; * @param \Proto\Api\PageArg $var * @return $this */ public function setPageArg($var) { GPBUtil::checkMessage($var, \Proto\Api\PageArg::class); $this->page_arg = $var; return $this; } /** * 门店筛选参数 * * Generated from protobuf field .proto.api.ShopArg shop_arg = 2; * @return \Proto\Api\ShopArg|null */ public function getShopArg() { return $this->shop_arg; } public function hasShopArg() { return isset($this->shop_arg); } public function clearShopArg() { unset($this->shop_arg); } /** * 门店筛选参数 * * Generated from protobuf field .proto.api.ShopArg shop_arg = 2; * @param \Proto\Api\ShopArg $var * @return $this */ public function setShopArg($var) { GPBUtil::checkMessage($var, \Proto\Api\ShopArg::class); $this->shop_arg = $var; return $this; } /** * 套餐分类 * * Generated from protobuf field .proto.api.DEVICE_USE_TYPE package_category = 3; * @return int */ public function getPackageCategory() { return $this->package_category; } /** * 套餐分类 * * Generated from protobuf field .proto.api.DEVICE_USE_TYPE package_category = 3; * @param int $var * @return $this */ public function setPackageCategory($var) { GPBUtil::checkEnum($var, \Proto\Api\DEVICE_USE_TYPE::class); $this->package_category = $var; return $this; } /** * 上下架状态 * * Generated from protobuf field .proto.api.LISTED_STATUS listed_status = 4; * @return int */ public function getListedStatus() { return $this->listed_status; } /** * 上下架状态 * * Generated from protobuf field .proto.api.LISTED_STATUS listed_status = 4; * @param int $var * @return $this */ public function setListedStatus($var) { GPBUtil::checkEnum($var, \Proto\Api\LISTED_STATUS::class); $this->listed_status = $var; return $this; } }