Encrypt Dialog Content.
This commit is contained in:
@@ -1,3 +1,6 @@
|
|||||||
|
2021-06-16 Version: 1.36.787
|
||||||
|
- Encrypt Dialog Content.
|
||||||
|
|
||||||
2021-06-15 Version: 1.36.786
|
2021-06-15 Version: 1.36.786
|
||||||
- Add ListDevopsProjects.
|
- Add ListDevopsProjects.
|
||||||
|
|
||||||
|
|||||||
@@ -35,16 +35,16 @@ namespace AlibabaCloud
|
|||||||
ReplyTicketRequest();
|
ReplyTicketRequest();
|
||||||
~ReplyTicketRequest();
|
~ReplyTicketRequest();
|
||||||
|
|
||||||
std::string getSecContent()const;
|
|
||||||
void setSecContent(const std::string& secContent);
|
|
||||||
std::string getContent()const;
|
std::string getContent()const;
|
||||||
void setContent(const std::string& content);
|
void setContent(const std::string& content);
|
||||||
|
bool getEncrypt()const;
|
||||||
|
void setEncrypt(bool encrypt);
|
||||||
std::string getTicketId()const;
|
std::string getTicketId()const;
|
||||||
void setTicketId(const std::string& ticketId);
|
void setTicketId(const std::string& ticketId);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
std::string secContent_;
|
|
||||||
std::string content_;
|
std::string content_;
|
||||||
|
bool encrypt_;
|
||||||
std::string ticketId_;
|
std::string ticketId_;
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -27,17 +27,6 @@ ReplyTicketRequest::ReplyTicketRequest() :
|
|||||||
ReplyTicketRequest::~ReplyTicketRequest()
|
ReplyTicketRequest::~ReplyTicketRequest()
|
||||||
{}
|
{}
|
||||||
|
|
||||||
std::string ReplyTicketRequest::getSecContent()const
|
|
||||||
{
|
|
||||||
return secContent_;
|
|
||||||
}
|
|
||||||
|
|
||||||
void ReplyTicketRequest::setSecContent(const std::string& secContent)
|
|
||||||
{
|
|
||||||
secContent_ = secContent;
|
|
||||||
setBodyParameter("SecContent", secContent);
|
|
||||||
}
|
|
||||||
|
|
||||||
std::string ReplyTicketRequest::getContent()const
|
std::string ReplyTicketRequest::getContent()const
|
||||||
{
|
{
|
||||||
return content_;
|
return content_;
|
||||||
@@ -49,6 +38,17 @@ void ReplyTicketRequest::setContent(const std::string& content)
|
|||||||
setBodyParameter("Content", content);
|
setBodyParameter("Content", content);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool ReplyTicketRequest::getEncrypt()const
|
||||||
|
{
|
||||||
|
return encrypt_;
|
||||||
|
}
|
||||||
|
|
||||||
|
void ReplyTicketRequest::setEncrypt(bool encrypt)
|
||||||
|
{
|
||||||
|
encrypt_ = encrypt;
|
||||||
|
setBodyParameter("Encrypt", encrypt ? "true" : "false");
|
||||||
|
}
|
||||||
|
|
||||||
std::string ReplyTicketRequest::getTicketId()const
|
std::string ReplyTicketRequest::getTicketId()const
|
||||||
{
|
{
|
||||||
return ticketId_;
|
return ticketId_;
|
||||||
|
|||||||
Reference in New Issue
Block a user