You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
wkcrm/extend/alimsg/msg_sdk/lib/MNS/Requests/GetAccountAttributesRequest...

24 lines
384 B

<?php
namespace AliyunMNS\Requests;
use AliyunMNS\Requests\BaseRequest;
class GetAccountAttributesRequest extends BaseRequest
{
public function __construct()
{
parent::__construct('get', '/?accountmeta=true');
}
public function generateBody()
{
return NULL;
}
public function generateQueryString()
{
return NULL;
}
}
?>