GetProjectMember support pageSize.
This commit is contained in:
@@ -35,14 +35,20 @@ namespace AlibabaCloud
|
||||
GetDevopsProjectMembersRequest();
|
||||
~GetDevopsProjectMembersRequest();
|
||||
|
||||
int getPageSize()const;
|
||||
void setPageSize(int pageSize);
|
||||
std::string getProjectId()const;
|
||||
void setProjectId(const std::string& projectId);
|
||||
std::string getOrgId()const;
|
||||
void setOrgId(const std::string& orgId);
|
||||
std::string getPageToken()const;
|
||||
void setPageToken(const std::string& pageToken);
|
||||
|
||||
private:
|
||||
int pageSize_;
|
||||
std::string projectId_;
|
||||
std::string orgId_;
|
||||
std::string pageToken_;
|
||||
|
||||
};
|
||||
}
|
||||
|
||||
@@ -47,6 +47,8 @@ namespace AlibabaCloud
|
||||
GetDevopsProjectMembersResult();
|
||||
explicit GetDevopsProjectMembersResult(const std::string &payload);
|
||||
~GetDevopsProjectMembersResult();
|
||||
std::string getNextPageToken()const;
|
||||
int getTotal()const;
|
||||
std::string getErrorMsg()const;
|
||||
std::vector<Member> getObject()const;
|
||||
std::string getErrorCode()const;
|
||||
@@ -55,6 +57,8 @@ namespace AlibabaCloud
|
||||
protected:
|
||||
void parse(const std::string &payload);
|
||||
private:
|
||||
std::string nextPageToken_;
|
||||
int total_;
|
||||
std::string errorMsg_;
|
||||
std::vector<Member> object_;
|
||||
std::string errorCode_;
|
||||
|
||||
Reference in New Issue
Block a user