| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <?php
- namespace UnionOpenChannelInvitecodeGet;
- class ChannelInviteReq{
- private $params=array();
- function __construct(){
- $this->params["@type"]="com.jd.union.open.gateway.api.dto.channel.invite.ChannelInviteReq";
- }
-
- private $inviteType;
-
- public function setInviteType($inviteType){
- $this->params['inviteType'] = $inviteType;
- }
- public function getInviteType(){
- return $this->inviteType;
- }
-
- private $channelType;
-
- public function setChannelType($channelType){
- $this->params['channelType'] = $channelType;
- }
- public function getChannelType(){
- return $this->channelType;
- }
-
- private $pin;
-
- public function setPin($pin){
- $this->params['pin'] = $pin;
- }
- public function getPin(){
- return $this->pin;
- }
-
- function getInstance(){
- return $this->params;
- }
- }
- ?>
|