Supported insufficient balance check.
This commit is contained in:
@@ -32,8 +32,12 @@ public:
|
|||||||
~DescribePhoneNumberOperatorAttributeRequest();
|
~DescribePhoneNumberOperatorAttributeRequest();
|
||||||
long getResourceOwnerId() const;
|
long getResourceOwnerId() const;
|
||||||
void setResourceOwnerId(long resourceOwnerId);
|
void setResourceOwnerId(long resourceOwnerId);
|
||||||
|
std::string getExtendFunction() const;
|
||||||
|
void setExtendFunction(const std::string &extendFunction);
|
||||||
std::string getAccessKeyId() const;
|
std::string getAccessKeyId() const;
|
||||||
void setAccessKeyId(const std::string &accessKeyId);
|
void setAccessKeyId(const std::string &accessKeyId);
|
||||||
|
std::string getRouteName() const;
|
||||||
|
void setRouteName(const std::string &routeName);
|
||||||
std::string getMask() const;
|
std::string getMask() const;
|
||||||
void setMask(const std::string &mask);
|
void setMask(const std::string &mask);
|
||||||
std::string getResultCount() const;
|
std::string getResultCount() const;
|
||||||
@@ -51,7 +55,9 @@ public:
|
|||||||
|
|
||||||
private:
|
private:
|
||||||
long resourceOwnerId_;
|
long resourceOwnerId_;
|
||||||
|
std::string extendFunction_;
|
||||||
std::string accessKeyId_;
|
std::string accessKeyId_;
|
||||||
|
std::string routeName_;
|
||||||
std::string mask_;
|
std::string mask_;
|
||||||
std::string resultCount_;
|
std::string resultCount_;
|
||||||
std::string resourceOwnerAccount_;
|
std::string resourceOwnerAccount_;
|
||||||
|
|||||||
@@ -34,6 +34,15 @@ void DescribePhoneNumberOperatorAttributeRequest::setResourceOwnerId(long resour
|
|||||||
setParameter(std::string("ResourceOwnerId"), std::to_string(resourceOwnerId));
|
setParameter(std::string("ResourceOwnerId"), std::to_string(resourceOwnerId));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
std::string DescribePhoneNumberOperatorAttributeRequest::getExtendFunction() const {
|
||||||
|
return extendFunction_;
|
||||||
|
}
|
||||||
|
|
||||||
|
void DescribePhoneNumberOperatorAttributeRequest::setExtendFunction(const std::string &extendFunction) {
|
||||||
|
extendFunction_ = extendFunction;
|
||||||
|
setParameter(std::string("ExtendFunction"), extendFunction);
|
||||||
|
}
|
||||||
|
|
||||||
std::string DescribePhoneNumberOperatorAttributeRequest::getAccessKeyId() const {
|
std::string DescribePhoneNumberOperatorAttributeRequest::getAccessKeyId() const {
|
||||||
return accessKeyId_;
|
return accessKeyId_;
|
||||||
}
|
}
|
||||||
@@ -43,6 +52,15 @@ void DescribePhoneNumberOperatorAttributeRequest::setAccessKeyId(const std::stri
|
|||||||
setParameter(std::string("AccessKeyId"), accessKeyId);
|
setParameter(std::string("AccessKeyId"), accessKeyId);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
std::string DescribePhoneNumberOperatorAttributeRequest::getRouteName() const {
|
||||||
|
return routeName_;
|
||||||
|
}
|
||||||
|
|
||||||
|
void DescribePhoneNumberOperatorAttributeRequest::setRouteName(const std::string &routeName) {
|
||||||
|
routeName_ = routeName;
|
||||||
|
setParameter(std::string("RouteName"), routeName);
|
||||||
|
}
|
||||||
|
|
||||||
std::string DescribePhoneNumberOperatorAttributeRequest::getMask() const {
|
std::string DescribePhoneNumberOperatorAttributeRequest::getMask() const {
|
||||||
return mask_;
|
return mask_;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user