Supported AndroidMessageOppoCategory, AndroidMessageOppoNotifyLevel for Push and MassPush.
This commit is contained in:
@@ -32,8 +32,6 @@ public:
|
||||
~BindAliasRequest();
|
||||
std::string getDeviceId() const;
|
||||
void setDeviceId(const std::string &deviceId);
|
||||
std::string getAccessKeyId() const;
|
||||
void setAccessKeyId(const std::string &accessKeyId);
|
||||
std::string getAliasName() const;
|
||||
void setAliasName(const std::string &aliasName);
|
||||
long getAppKey() const;
|
||||
@@ -41,7 +39,6 @@ public:
|
||||
|
||||
private:
|
||||
std::string deviceId_;
|
||||
std::string accessKeyId_;
|
||||
std::string aliasName_;
|
||||
long appKey_;
|
||||
};
|
||||
|
||||
@@ -34,15 +34,12 @@ public:
|
||||
void setPhoneNumber(const std::string &phoneNumber);
|
||||
std::string getDeviceId() const;
|
||||
void setDeviceId(const std::string &deviceId);
|
||||
std::string getAccessKeyId() const;
|
||||
void setAccessKeyId(const std::string &accessKeyId);
|
||||
long getAppKey() const;
|
||||
void setAppKey(long appKey);
|
||||
|
||||
private:
|
||||
std::string phoneNumber_;
|
||||
std::string deviceId_;
|
||||
std::string accessKeyId_;
|
||||
long appKey_;
|
||||
};
|
||||
} // namespace Model
|
||||
|
||||
@@ -32,8 +32,6 @@ public:
|
||||
~BindTagRequest();
|
||||
std::string getKeyType() const;
|
||||
void setKeyType(const std::string &keyType);
|
||||
std::string getAccessKeyId() const;
|
||||
void setAccessKeyId(const std::string &accessKeyId);
|
||||
std::string getTagName() const;
|
||||
void setTagName(const std::string &tagName);
|
||||
std::string getClientKey() const;
|
||||
@@ -43,7 +41,6 @@ public:
|
||||
|
||||
private:
|
||||
std::string keyType_;
|
||||
std::string accessKeyId_;
|
||||
std::string tagName_;
|
||||
std::string clientKey_;
|
||||
long appKey_;
|
||||
|
||||
@@ -32,14 +32,11 @@ public:
|
||||
~CancelPushRequest();
|
||||
long getMessageId() const;
|
||||
void setMessageId(long messageId);
|
||||
std::string getAccessKeyId() const;
|
||||
void setAccessKeyId(const std::string &accessKeyId);
|
||||
long getAppKey() const;
|
||||
void setAppKey(long appKey);
|
||||
|
||||
private:
|
||||
long messageId_;
|
||||
std::string accessKeyId_;
|
||||
long appKey_;
|
||||
};
|
||||
} // namespace Model
|
||||
|
||||
@@ -32,14 +32,11 @@ public:
|
||||
~CheckDeviceRequest();
|
||||
std::string getDeviceId() const;
|
||||
void setDeviceId(const std::string &deviceId);
|
||||
std::string getAccessKeyId() const;
|
||||
void setAccessKeyId(const std::string &accessKeyId);
|
||||
long getAppKey() const;
|
||||
void setAppKey(long appKey);
|
||||
|
||||
private:
|
||||
std::string deviceId_;
|
||||
std::string accessKeyId_;
|
||||
long appKey_;
|
||||
};
|
||||
} // namespace Model
|
||||
|
||||
@@ -32,14 +32,11 @@ public:
|
||||
~CheckDevicesRequest();
|
||||
std::string getDeviceIds() const;
|
||||
void setDeviceIds(const std::string &deviceIds);
|
||||
std::string getAccessKeyId() const;
|
||||
void setAccessKeyId(const std::string &accessKeyId);
|
||||
long getAppKey() const;
|
||||
void setAppKey(long appKey);
|
||||
|
||||
private:
|
||||
std::string deviceIds_;
|
||||
std::string accessKeyId_;
|
||||
long appKey_;
|
||||
};
|
||||
} // namespace Model
|
||||
|
||||
@@ -32,14 +32,11 @@ public:
|
||||
~CompleteContinuouslyPushRequest();
|
||||
std::string getMessageId() const;
|
||||
void setMessageId(const std::string &messageId);
|
||||
std::string getAccessKeyId() const;
|
||||
void setAccessKeyId(const std::string &accessKeyId);
|
||||
long getAppKey() const;
|
||||
void setAppKey(long appKey);
|
||||
|
||||
private:
|
||||
std::string messageId_;
|
||||
std::string accessKeyId_;
|
||||
long appKey_;
|
||||
};
|
||||
} // namespace Model
|
||||
|
||||
@@ -32,8 +32,6 @@ public:
|
||||
~ContinuouslyPushRequest();
|
||||
std::string getMessageId() const;
|
||||
void setMessageId(const std::string &messageId);
|
||||
std::string getAccessKeyId() const;
|
||||
void setAccessKeyId(const std::string &accessKeyId);
|
||||
std::string getTarget() const;
|
||||
void setTarget(const std::string &target);
|
||||
long getAppKey() const;
|
||||
@@ -43,7 +41,6 @@ public:
|
||||
|
||||
private:
|
||||
std::string messageId_;
|
||||
std::string accessKeyId_;
|
||||
std::string target_;
|
||||
long appKey_;
|
||||
std::string targetValue_;
|
||||
|
||||
@@ -30,11 +30,8 @@ class ALIBABACLOUD_PUSH_EXPORT ListSummaryAppsRequest : public RpcServiceRequest
|
||||
public:
|
||||
ListSummaryAppsRequest();
|
||||
~ListSummaryAppsRequest();
|
||||
std::string getAccessKeyId() const;
|
||||
void setAccessKeyId(const std::string &accessKeyId);
|
||||
|
||||
private:
|
||||
std::string accessKeyId_;
|
||||
};
|
||||
} // namespace Model
|
||||
} // namespace Push
|
||||
|
||||
@@ -30,13 +30,10 @@ class ALIBABACLOUD_PUSH_EXPORT ListTagsRequest : public RpcServiceRequest {
|
||||
public:
|
||||
ListTagsRequest();
|
||||
~ListTagsRequest();
|
||||
std::string getAccessKeyId() const;
|
||||
void setAccessKeyId(const std::string &accessKeyId);
|
||||
long getAppKey() const;
|
||||
void setAppKey(long appKey);
|
||||
|
||||
private:
|
||||
std::string accessKeyId_;
|
||||
long appKey_;
|
||||
};
|
||||
} // namespace Model
|
||||
|
||||
@@ -30,6 +30,7 @@ class ALIBABACLOUD_PUSH_EXPORT MassPushRequest : public RpcServiceRequest {
|
||||
public:
|
||||
struct PushTask {
|
||||
int androidNotificationBarType;
|
||||
int androidMessageOppoNotifyLevel;
|
||||
std::string body;
|
||||
std::string deviceType;
|
||||
std::string pushTime;
|
||||
@@ -50,6 +51,7 @@ public:
|
||||
int androidNotificationBarPriority;
|
||||
std::string expireTime;
|
||||
std::string androidImageUrl;
|
||||
std::string androidNotificationThreadId;
|
||||
int androidHonorTargetUserType;
|
||||
std::string harmonyRemindBody;
|
||||
std::string androidNotificationVivoChannel;
|
||||
@@ -113,6 +115,7 @@ public:
|
||||
bool androidRemind;
|
||||
std::string harmonyInboxContent;
|
||||
std::string androidActivity;
|
||||
std::string androidMessageOppoCategory;
|
||||
int androidNotificationNotifyId;
|
||||
std::string targetValue;
|
||||
int harmonyBadgeSetNum;
|
||||
@@ -121,15 +124,12 @@ public:
|
||||
};
|
||||
MassPushRequest();
|
||||
~MassPushRequest();
|
||||
std::string getAccessKeyId() const;
|
||||
void setAccessKeyId(const std::string &accessKeyId);
|
||||
std::vector<PushTask> getPushTask() const;
|
||||
void setPushTask(const std::vector<PushTask> &pushTask);
|
||||
long getAppKey() const;
|
||||
void setAppKey(long appKey);
|
||||
|
||||
private:
|
||||
std::string accessKeyId_;
|
||||
std::vector<PushTask> pushTask_;
|
||||
long appKey_;
|
||||
};
|
||||
|
||||
@@ -34,8 +34,6 @@ public:
|
||||
void setTitle(const std::string &title);
|
||||
std::string getBody() const;
|
||||
void setBody(const std::string &body);
|
||||
std::string getAccessKeyId() const;
|
||||
void setAccessKeyId(const std::string &accessKeyId);
|
||||
bool getStoreOffline() const;
|
||||
void setStoreOffline(bool storeOffline);
|
||||
std::string getJobKey() const;
|
||||
@@ -50,7 +48,6 @@ public:
|
||||
private:
|
||||
std::string title_;
|
||||
std::string body_;
|
||||
std::string accessKeyId_;
|
||||
bool storeOffline_;
|
||||
std::string jobKey_;
|
||||
std::string target_;
|
||||
|
||||
@@ -34,8 +34,6 @@ public:
|
||||
void setTitle(const std::string &title);
|
||||
std::string getBody() const;
|
||||
void setBody(const std::string &body);
|
||||
std::string getAccessKeyId() const;
|
||||
void setAccessKeyId(const std::string &accessKeyId);
|
||||
bool getStoreOffline() const;
|
||||
void setStoreOffline(bool storeOffline);
|
||||
std::string getJobKey() const;
|
||||
@@ -50,7 +48,6 @@ public:
|
||||
private:
|
||||
std::string title_;
|
||||
std::string body_;
|
||||
std::string accessKeyId_;
|
||||
bool storeOffline_;
|
||||
std::string jobKey_;
|
||||
std::string target_;
|
||||
|
||||
@@ -34,8 +34,6 @@ public:
|
||||
void setTitle(const std::string &title);
|
||||
std::string getBody() const;
|
||||
void setBody(const std::string &body);
|
||||
std::string getAccessKeyId() const;
|
||||
void setAccessKeyId(const std::string &accessKeyId);
|
||||
std::string getExtParameters() const;
|
||||
void setExtParameters(const std::string &extParameters);
|
||||
bool getStoreOffline() const;
|
||||
@@ -52,7 +50,6 @@ public:
|
||||
private:
|
||||
std::string title_;
|
||||
std::string body_;
|
||||
std::string accessKeyId_;
|
||||
std::string extParameters_;
|
||||
bool storeOffline_;
|
||||
std::string jobKey_;
|
||||
|
||||
@@ -34,8 +34,6 @@ public:
|
||||
void setTitle(const std::string &title);
|
||||
std::string getBody() const;
|
||||
void setBody(const std::string &body);
|
||||
std::string getAccessKeyId() const;
|
||||
void setAccessKeyId(const std::string &accessKeyId);
|
||||
std::string getExtParameters() const;
|
||||
void setExtParameters(const std::string &extParameters);
|
||||
std::string getApnsEnv() const;
|
||||
@@ -52,7 +50,6 @@ public:
|
||||
private:
|
||||
std::string title_;
|
||||
std::string body_;
|
||||
std::string accessKeyId_;
|
||||
std::string extParameters_;
|
||||
std::string apnsEnv_;
|
||||
std::string jobKey_;
|
||||
|
||||
@@ -32,6 +32,8 @@ public:
|
||||
~PushRequest();
|
||||
int getAndroidNotificationBarType() const;
|
||||
void setAndroidNotificationBarType(int androidNotificationBarType);
|
||||
int getAndroidMessageOppoNotifyLevel() const;
|
||||
void setAndroidMessageOppoNotifyLevel(int androidMessageOppoNotifyLevel);
|
||||
std::string getDeviceType() const;
|
||||
void setDeviceType(const std::string &deviceType);
|
||||
std::string getPushTime() const;
|
||||
@@ -90,10 +92,10 @@ public:
|
||||
void setIOSExtParameters(const std::string &iOSExtParameters);
|
||||
std::string getAndroidXiaomiImageUrl() const;
|
||||
void setAndroidXiaomiImageUrl(const std::string &androidXiaomiImageUrl);
|
||||
std::string getSmsTemplateName() const;
|
||||
void setSmsTemplateName(const std::string &smsTemplateName);
|
||||
std::string getHarmonyUri() const;
|
||||
void setHarmonyUri(const std::string &harmonyUri);
|
||||
std::string getSmsTemplateName() const;
|
||||
void setSmsTemplateName(const std::string &smsTemplateName);
|
||||
std::string getHarmonyExtParameters() const;
|
||||
void setHarmonyExtParameters(const std::string &harmonyExtParameters);
|
||||
std::string getAndroidBigPictureUrl() const;
|
||||
@@ -144,6 +146,8 @@ public:
|
||||
void setIOSMusic(const std::string &iOSMusic);
|
||||
bool getIOSMutableContent() const;
|
||||
void setIOSMutableContent(bool iOSMutableContent);
|
||||
std::string getAndroidNotificationThreadId() const;
|
||||
void setAndroidNotificationThreadId(const std::string &androidNotificationThreadId);
|
||||
int getAndroidHonorTargetUserType() const;
|
||||
void setAndroidHonorTargetUserType(int androidHonorTargetUserType);
|
||||
std::string getHarmonyRemindBody() const;
|
||||
@@ -194,8 +198,6 @@ public:
|
||||
void setAndroidBigBody(const std::string &androidBigBody);
|
||||
std::string getTitle() const;
|
||||
void setTitle(const std::string &title);
|
||||
std::string getAccessKeyId() const;
|
||||
void setAccessKeyId(const std::string &accessKeyId);
|
||||
int getHarmonyBadgeAddNum() const;
|
||||
void setHarmonyBadgeAddNum(int harmonyBadgeAddNum);
|
||||
bool getHarmonyTestMessage() const;
|
||||
@@ -220,11 +222,14 @@ public:
|
||||
void setTarget(const std::string &target);
|
||||
std::string getHarmonyInboxContent() const;
|
||||
void setHarmonyInboxContent(const std::string &harmonyInboxContent);
|
||||
std::string getAndroidMessageOppoCategory() const;
|
||||
void setAndroidMessageOppoCategory(const std::string &androidMessageOppoCategory);
|
||||
std::string getAndroidXiaoMiActivity() const;
|
||||
void setAndroidXiaoMiActivity(const std::string &androidXiaoMiActivity);
|
||||
|
||||
private:
|
||||
int androidNotificationBarType_;
|
||||
int androidMessageOppoNotifyLevel_;
|
||||
std::string deviceType_;
|
||||
std::string pushTime_;
|
||||
int sendSpeed_;
|
||||
@@ -254,8 +259,8 @@ private:
|
||||
int androidRenderStyle_;
|
||||
std::string iOSExtParameters_;
|
||||
std::string androidXiaomiImageUrl_;
|
||||
std::string smsTemplateName_;
|
||||
std::string harmonyUri_;
|
||||
std::string smsTemplateName_;
|
||||
std::string harmonyExtParameters_;
|
||||
std::string androidBigPictureUrl_;
|
||||
bool iOSSilentNotification_;
|
||||
@@ -281,6 +286,7 @@ private:
|
||||
std::string androidMessageHuaweiCategory_;
|
||||
std::string iOSMusic_;
|
||||
bool iOSMutableContent_;
|
||||
std::string androidNotificationThreadId_;
|
||||
int androidHonorTargetUserType_;
|
||||
std::string harmonyRemindBody_;
|
||||
std::string androidNotificationVivoChannel_;
|
||||
@@ -306,7 +312,6 @@ private:
|
||||
std::string harmonyImageUrl_;
|
||||
std::string androidBigBody_;
|
||||
std::string title_;
|
||||
std::string accessKeyId_;
|
||||
int harmonyBadgeAddNum_;
|
||||
bool harmonyTestMessage_;
|
||||
int androidBadgeAddNum_;
|
||||
@@ -319,6 +324,7 @@ private:
|
||||
std::string harmonyActionType_;
|
||||
std::string target_;
|
||||
std::string harmonyInboxContent_;
|
||||
std::string androidMessageOppoCategory_;
|
||||
std::string androidXiaoMiActivity_;
|
||||
};
|
||||
} // namespace Model
|
||||
|
||||
@@ -32,14 +32,11 @@ public:
|
||||
~QueryAliasesRequest();
|
||||
std::string getDeviceId() const;
|
||||
void setDeviceId(const std::string &deviceId);
|
||||
std::string getAccessKeyId() const;
|
||||
void setAccessKeyId(const std::string &accessKeyId);
|
||||
long getAppKey() const;
|
||||
void setAppKey(long appKey);
|
||||
|
||||
private:
|
||||
std::string deviceId_;
|
||||
std::string accessKeyId_;
|
||||
long appKey_;
|
||||
};
|
||||
} // namespace Model
|
||||
|
||||
@@ -32,14 +32,11 @@ public:
|
||||
~QueryDeviceInfoRequest();
|
||||
std::string getDeviceId() const;
|
||||
void setDeviceId(const std::string &deviceId);
|
||||
std::string getAccessKeyId() const;
|
||||
void setAccessKeyId(const std::string &accessKeyId);
|
||||
long getAppKey() const;
|
||||
void setAppKey(long appKey);
|
||||
|
||||
private:
|
||||
std::string deviceId_;
|
||||
std::string accessKeyId_;
|
||||
long appKey_;
|
||||
};
|
||||
} // namespace Model
|
||||
|
||||
@@ -34,13 +34,13 @@ namespace AlibabaCloud
|
||||
public:
|
||||
struct DeviceInfo
|
||||
{
|
||||
std::string lastOnlineTime;
|
||||
std::string brand;
|
||||
std::string lastOnlineTime;
|
||||
std::string account;
|
||||
std::string deviceType;
|
||||
std::string alias;
|
||||
std::string deviceId;
|
||||
std::string deviceToken;
|
||||
std::string alias;
|
||||
std::string model;
|
||||
std::string phoneNumber;
|
||||
bool online;
|
||||
|
||||
@@ -36,8 +36,6 @@ public:
|
||||
void setStartTime(const std::string &startTime);
|
||||
std::string getDeviceType() const;
|
||||
void setDeviceType(const std::string &deviceType);
|
||||
std::string getAccessKeyId() const;
|
||||
void setAccessKeyId(const std::string &accessKeyId);
|
||||
long getAppKey() const;
|
||||
void setAppKey(long appKey);
|
||||
std::string getQueryType() const;
|
||||
@@ -47,7 +45,6 @@ private:
|
||||
std::string endTime_;
|
||||
std::string startTime_;
|
||||
std::string deviceType_;
|
||||
std::string accessKeyId_;
|
||||
long appKey_;
|
||||
std::string queryType_;
|
||||
};
|
||||
|
||||
@@ -30,15 +30,12 @@ class ALIBABACLOUD_PUSH_EXPORT QueryDevicesByAccountRequest : public RpcServiceR
|
||||
public:
|
||||
QueryDevicesByAccountRequest();
|
||||
~QueryDevicesByAccountRequest();
|
||||
std::string getAccessKeyId() const;
|
||||
void setAccessKeyId(const std::string &accessKeyId);
|
||||
long getAppKey() const;
|
||||
void setAppKey(long appKey);
|
||||
std::string getAccount() const;
|
||||
void setAccount(const std::string &account);
|
||||
|
||||
private:
|
||||
std::string accessKeyId_;
|
||||
long appKey_;
|
||||
std::string account_;
|
||||
};
|
||||
|
||||
@@ -30,15 +30,12 @@ class ALIBABACLOUD_PUSH_EXPORT QueryDevicesByAliasRequest : public RpcServiceReq
|
||||
public:
|
||||
QueryDevicesByAliasRequest();
|
||||
~QueryDevicesByAliasRequest();
|
||||
std::string getAccessKeyId() const;
|
||||
void setAccessKeyId(const std::string &accessKeyId);
|
||||
std::string getAlias() const;
|
||||
void setAlias(const std::string &alias);
|
||||
long getAppKey() const;
|
||||
void setAppKey(long appKey);
|
||||
|
||||
private:
|
||||
std::string accessKeyId_;
|
||||
std::string alias_;
|
||||
long appKey_;
|
||||
};
|
||||
|
||||
@@ -34,8 +34,6 @@ public:
|
||||
void setEndTime(const std::string &endTime);
|
||||
std::string getStartTime() const;
|
||||
void setStartTime(const std::string &startTime);
|
||||
std::string getAccessKeyId() const;
|
||||
void setAccessKeyId(const std::string &accessKeyId);
|
||||
std::string getGranularity() const;
|
||||
void setGranularity(const std::string &granularity);
|
||||
long getAppKey() const;
|
||||
@@ -44,7 +42,6 @@ public:
|
||||
private:
|
||||
std::string endTime_;
|
||||
std::string startTime_;
|
||||
std::string accessKeyId_;
|
||||
std::string granularity_;
|
||||
long appKey_;
|
||||
};
|
||||
|
||||
@@ -39,8 +39,8 @@ namespace AlibabaCloud
|
||||
long smsSkipCount;
|
||||
long smsFailedCount;
|
||||
long smsReceiveFailedCount;
|
||||
std::string time;
|
||||
long deletedCount;
|
||||
std::string time;
|
||||
long smsReceiveSuccessCount;
|
||||
long receivedCount;
|
||||
long sentCount;
|
||||
|
||||
@@ -32,14 +32,11 @@ public:
|
||||
~QueryPushStatByMsgRequest();
|
||||
long getMessageId() const;
|
||||
void setMessageId(long messageId);
|
||||
std::string getAccessKeyId() const;
|
||||
void setAccessKeyId(const std::string &accessKeyId);
|
||||
long getAppKey() const;
|
||||
void setAppKey(long appKey);
|
||||
|
||||
private:
|
||||
long messageId_;
|
||||
std::string accessKeyId_;
|
||||
long appKey_;
|
||||
};
|
||||
} // namespace Model
|
||||
|
||||
@@ -32,8 +32,6 @@ public:
|
||||
~QueryTagsRequest();
|
||||
std::string getKeyType() const;
|
||||
void setKeyType(const std::string &keyType);
|
||||
std::string getAccessKeyId() const;
|
||||
void setAccessKeyId(const std::string &accessKeyId);
|
||||
std::string getClientKey() const;
|
||||
void setClientKey(const std::string &clientKey);
|
||||
long getAppKey() const;
|
||||
@@ -41,7 +39,6 @@ public:
|
||||
|
||||
private:
|
||||
std::string keyType_;
|
||||
std::string accessKeyId_;
|
||||
std::string clientKey_;
|
||||
long appKey_;
|
||||
};
|
||||
|
||||
@@ -34,8 +34,6 @@ public:
|
||||
void setEndTime(const std::string &endTime);
|
||||
std::string getStartTime() const;
|
||||
void setStartTime(const std::string &startTime);
|
||||
std::string getAccessKeyId() const;
|
||||
void setAccessKeyId(const std::string &accessKeyId);
|
||||
std::string getGranularity() const;
|
||||
void setGranularity(const std::string &granularity);
|
||||
long getAppKey() const;
|
||||
@@ -44,7 +42,6 @@ public:
|
||||
private:
|
||||
std::string endTime_;
|
||||
std::string startTime_;
|
||||
std::string accessKeyId_;
|
||||
std::string granularity_;
|
||||
long appKey_;
|
||||
};
|
||||
|
||||
@@ -30,15 +30,12 @@ class ALIBABACLOUD_PUSH_EXPORT RemoveTagRequest : public RpcServiceRequest {
|
||||
public:
|
||||
RemoveTagRequest();
|
||||
~RemoveTagRequest();
|
||||
std::string getAccessKeyId() const;
|
||||
void setAccessKeyId(const std::string &accessKeyId);
|
||||
std::string getTagName() const;
|
||||
void setTagName(const std::string &tagName);
|
||||
long getAppKey() const;
|
||||
void setAppKey(long appKey);
|
||||
|
||||
private:
|
||||
std::string accessKeyId_;
|
||||
std::string tagName_;
|
||||
long appKey_;
|
||||
};
|
||||
|
||||
@@ -32,8 +32,6 @@ public:
|
||||
~UnbindAliasRequest();
|
||||
std::string getDeviceId() const;
|
||||
void setDeviceId(const std::string &deviceId);
|
||||
std::string getAccessKeyId() const;
|
||||
void setAccessKeyId(const std::string &accessKeyId);
|
||||
std::string getAliasName() const;
|
||||
void setAliasName(const std::string &aliasName);
|
||||
long getAppKey() const;
|
||||
@@ -43,7 +41,6 @@ public:
|
||||
|
||||
private:
|
||||
std::string deviceId_;
|
||||
std::string accessKeyId_;
|
||||
std::string aliasName_;
|
||||
long appKey_;
|
||||
bool unbindAll_;
|
||||
|
||||
@@ -32,14 +32,11 @@ public:
|
||||
~UnbindPhoneRequest();
|
||||
std::string getDeviceId() const;
|
||||
void setDeviceId(const std::string &deviceId);
|
||||
std::string getAccessKeyId() const;
|
||||
void setAccessKeyId(const std::string &accessKeyId);
|
||||
long getAppKey() const;
|
||||
void setAppKey(long appKey);
|
||||
|
||||
private:
|
||||
std::string deviceId_;
|
||||
std::string accessKeyId_;
|
||||
long appKey_;
|
||||
};
|
||||
} // namespace Model
|
||||
|
||||
@@ -32,8 +32,6 @@ public:
|
||||
~UnbindTagRequest();
|
||||
std::string getKeyType() const;
|
||||
void setKeyType(const std::string &keyType);
|
||||
std::string getAccessKeyId() const;
|
||||
void setAccessKeyId(const std::string &accessKeyId);
|
||||
std::string getTagName() const;
|
||||
void setTagName(const std::string &tagName);
|
||||
std::string getClientKey() const;
|
||||
@@ -43,7 +41,6 @@ public:
|
||||
|
||||
private:
|
||||
std::string keyType_;
|
||||
std::string accessKeyId_;
|
||||
std::string tagName_;
|
||||
std::string clientKey_;
|
||||
long appKey_;
|
||||
|
||||
Reference in New Issue
Block a user