-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
138 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
<?php | ||
|
||
namespace TPay\AddWeChatConfig; | ||
|
||
|
||
use TPay\BaseParams; | ||
|
||
/** | ||
* @property $appid | ||
* @property $path | ||
* @property $subscribeAppid | ||
* Class AddWeChatConfigParams | ||
* @package TPay\addWeChatConfig | ||
*/ | ||
class AddWeChatConfigParams extends BaseParams | ||
{ | ||
/** | ||
* @return mixed | ||
*/ | ||
public function getAppid() | ||
{ | ||
return $this->data['appid']; | ||
} | ||
|
||
/** | ||
* @param mixed $appid | ||
*/ | ||
public function setAppid($appid): void | ||
{ | ||
$this->data['appid'] = $appid; | ||
} | ||
|
||
/** | ||
* @return mixed | ||
*/ | ||
public function getPath() | ||
{ | ||
return $this->data['path']; | ||
} | ||
|
||
/** | ||
* @param mixed $path | ||
*/ | ||
public function setPath($path): void | ||
{ | ||
$this->data['path'] = $path; | ||
} | ||
|
||
/** | ||
* @return mixed | ||
*/ | ||
public function getSubscribeAppid() | ||
{ | ||
return $this->data['subscribeAppid']; | ||
} | ||
|
||
/** | ||
* @param mixed $subscribeAppid | ||
*/ | ||
public function setSubscribeAppid($subscribeAppid): void | ||
{ | ||
$this->data['subscribeAppid'] = $subscribeAppid; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<?php | ||
|
||
namespace TPay\AddWeChatConfig; | ||
|
||
|
||
use TPay\BaseResponse; | ||
|
||
class AddWeChatConfigResponse extends BaseResponse | ||
{ | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters