- 新增ISV用户平台

- 新增门户网站(portal)
- 新增`C++`,`Rust`语言SDK
This commit is contained in:
tanghc
2020-11-07 10:55:12 +08:00
parent 1370883af9
commit 6ab696dfaf
599 changed files with 34834 additions and 141 deletions

View File

@@ -0,0 +1,29 @@
#ifndef SDK_CXX_MEMBERINFOGETREQUEST_HPP
#define SDK_CXX_MEMBERINFOGETREQUEST_HPP
#include <string>
#include "BaseRequest.h"
using namespace std;
class MemberInfoGetRequest : public BaseRequest {
public:
string getMethod() override;
string getVersion() override;
RequestType getRequestType() override;
};
string MemberInfoGetRequest::getMethod() {
return "member.info.get";
}
string MemberInfoGetRequest::getVersion() {
return "1.0";
}
RequestType MemberInfoGetRequest::getRequestType() {
return GET;
}
#endif //SDK_CXX_MEMBERINFOGETREQUEST_HPP