| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <?php
- namespace UnionOpenChannelRelationGet;
- class ChannelRelationGetReq{
- private $params=array();
- function __construct(){
- $this->params["@type"]="com.jd.union.open.gateway.api.dto.channel.relation.ChannelRelationGetReq";
- }
-
- private $pin;
-
- public function setPin($pin){
- $this->params['pin'] = $pin;
- }
- public function getPin(){
- return $this->pin;
- }
-
- private $inviteCode;
-
- public function setInviteCode($inviteCode){
- $this->params['inviteCode'] = $inviteCode;
- }
- public function getInviteCode(){
- return $this->inviteCode;
- }
-
- private $note;
-
- public function setNote($note){
- $this->params['note'] = $note;
- }
- public function getNote(){
- return $this->note;
- }
-
- private $channelNote;
-
- public function setChannelNote($channelNote){
- $this->params['channelNote'] = $channelNote;
- }
- public function getChannelNote(){
- return $this->channelNote;
- }
-
- function getInstance(){
- return $this->params;
- }
- }
- ?>
|