| 12345678910111213141516171819202122232425262728293031323334 |
- <?php
- namespace Com\Pdd\Pop\Sdk\Api\Request;
- use Com\Pdd\Pop\Sdk\PopBaseHttpRequest;
- use Com\Pdd\Pop\Sdk\PopBaseJsonEntity;
- class PddAdApiAdvertiserQueryAccountBalanceRequest extends PopBaseHttpRequest
- {
- public function __construct()
- {
- }
- protected function setUserParams(&$params)
- {
- }
- public function getVersion()
- {
- return "V1";
- }
- public function getDataType()
- {
- return "JSON";
- }
- public function getType()
- {
- return "pdd.ad.api.advertiser.query.account.balance";
- }
- }
|