Fix IoT Studio BatchBindDevicesIntoProject API return datatype.

This commit is contained in:
sdk-team
2021-02-08 10:32:04 +00:00
parent cbf2412b29
commit 052017ee0a
19 changed files with 162 additions and 16 deletions

View File

@@ -37,7 +37,7 @@ namespace AlibabaCloud
BatchBindDevicesIntoProjectResult();
explicit BatchBindDevicesIntoProjectResult(const std::string &payload);
~BatchBindDevicesIntoProjectResult();
std::string getData()const;
bool getData()const;
std::string getErrorMessage()const;
std::string getCode()const;
bool getSuccess()const;
@@ -45,7 +45,7 @@ namespace AlibabaCloud
protected:
void parse(const std::string &payload);
private:
std::string data_;
bool data_;
std::string errorMessage_;
std::string code_;
bool success_;

View File

@@ -37,7 +37,7 @@ namespace AlibabaCloud
BatchBindProductsIntoProjectResult();
explicit BatchBindProductsIntoProjectResult(const std::string &payload);
~BatchBindProductsIntoProjectResult();
std::string getData()const;
bool getData()const;
std::string getErrorMessage()const;
std::string getCode()const;
bool getSuccess()const;
@@ -45,7 +45,7 @@ namespace AlibabaCloud
protected:
void parse(const std::string &payload);
private:
std::string data_;
bool data_;
std::string errorMessage_;
std::string code_;
bool success_;

View File

@@ -37,7 +37,7 @@ namespace AlibabaCloud
BatchUnbindProjectDevicesResult();
explicit BatchUnbindProjectDevicesResult(const std::string &payload);
~BatchUnbindProjectDevicesResult();
std::string getData()const;
bool getData()const;
std::string getErrorMessage()const;
std::string getCode()const;
bool getSuccess()const;
@@ -45,7 +45,7 @@ namespace AlibabaCloud
protected:
void parse(const std::string &payload);
private:
std::string data_;
bool data_;
std::string errorMessage_;
std::string code_;
bool success_;

View File

@@ -37,7 +37,7 @@ namespace AlibabaCloud
BatchUnbindProjectProductsResult();
explicit BatchUnbindProjectProductsResult(const std::string &payload);
~BatchUnbindProjectProductsResult();
std::string getData()const;
bool getData()const;
std::string getErrorMessage()const;
std::string getCode()const;
bool getSuccess()const;
@@ -45,7 +45,7 @@ namespace AlibabaCloud
protected:
void parse(const std::string &payload);
private:
std::string data_;
bool data_;
std::string errorMessage_;
std::string code_;
bool success_;

View File

@@ -35,6 +35,10 @@ namespace AlibabaCloud
CreateConsumerGroupRequest();
~CreateConsumerGroupRequest();
std::string getRealTenantId()const;
void setRealTenantId(const std::string& realTenantId);
std::string getRealTripartiteKey()const;
void setRealTripartiteKey(const std::string& realTripartiteKey);
std::string getIotInstanceId()const;
void setIotInstanceId(const std::string& iotInstanceId);
std::string getGroupName()const;
@@ -45,6 +49,8 @@ namespace AlibabaCloud
void setApiRevision(const std::string& apiRevision);
private:
std::string realTenantId_;
std::string realTripartiteKey_;
std::string iotInstanceId_;
std::string groupName_;
std::string apiProduct_;

View File

@@ -35,6 +35,10 @@ namespace AlibabaCloud
QueryConsumerGroupListRequest();
~QueryConsumerGroupListRequest();
std::string getRealTenantId()const;
void setRealTenantId(const std::string& realTenantId);
std::string getRealTripartiteKey()const;
void setRealTripartiteKey(const std::string& realTripartiteKey);
std::string getIotInstanceId()const;
void setIotInstanceId(const std::string& iotInstanceId);
int getPageSize()const;
@@ -51,6 +55,8 @@ namespace AlibabaCloud
void setApiRevision(const std::string& apiRevision);
private:
std::string realTenantId_;
std::string realTripartiteKey_;
std::string iotInstanceId_;
int pageSize_;
bool fuzzy_;

View File

@@ -35,6 +35,10 @@ namespace AlibabaCloud
QueryConsumerGroupStatusRequest();
~QueryConsumerGroupStatusRequest();
std::string getRealTenantId()const;
void setRealTenantId(const std::string& realTenantId);
std::string getRealTripartiteKey()const;
void setRealTripartiteKey(const std::string& realTripartiteKey);
std::string getIotInstanceId()const;
void setIotInstanceId(const std::string& iotInstanceId);
std::string getGroupId()const;
@@ -45,6 +49,8 @@ namespace AlibabaCloud
void setApiRevision(const std::string& apiRevision);
private:
std::string realTenantId_;
std::string realTripartiteKey_;
std::string iotInstanceId_;
std::string groupId_;
std::string apiProduct_;

View File

@@ -35,8 +35,12 @@ namespace AlibabaCloud
QueryProductTopicRequest();
~QueryProductTopicRequest();
std::string getRealTenantId()const;
void setRealTenantId(const std::string& realTenantId);
std::string getAccessKeyId()const;
void setAccessKeyId(const std::string& accessKeyId);
std::string getRealTripartiteKey()const;
void setRealTripartiteKey(const std::string& realTripartiteKey);
std::string getIotInstanceId()const;
void setIotInstanceId(const std::string& iotInstanceId);
std::string getProductKey()const;
@@ -47,7 +51,9 @@ namespace AlibabaCloud
void setApiRevision(const std::string& apiRevision);
private:
std::string realTenantId_;
std::string accessKeyId_;
std::string realTripartiteKey_;
std::string iotInstanceId_;
std::string productKey_;
std::string apiProduct_;

View File

@@ -35,8 +35,12 @@ namespace AlibabaCloud
QuerySubscribeRelationRequest();
~QuerySubscribeRelationRequest();
std::string getRealTenantId()const;
void setRealTenantId(const std::string& realTenantId);
std::string getType()const;
void setType(const std::string& type);
std::string getRealTripartiteKey()const;
void setRealTripartiteKey(const std::string& realTripartiteKey);
std::string getIotInstanceId()const;
void setIotInstanceId(const std::string& iotInstanceId);
std::string getProductKey()const;
@@ -47,7 +51,9 @@ namespace AlibabaCloud
void setApiRevision(const std::string& apiRevision);
private:
std::string realTenantId_;
std::string type_;
std::string realTripartiteKey_;
std::string iotInstanceId_;
std::string productKey_;
std::string apiProduct_;