Release DetectPedestrianIntrusion.
This commit is contained in:
@@ -1,3 +1,6 @@
|
||||
2020-12-23 Version: patch
|
||||
- Release DetectPedestrianIntrusion.
|
||||
|
||||
2020-12-23 Version: patch
|
||||
- Create Lindorm Open api.
|
||||
|
||||
|
||||
@@ -35,17 +35,17 @@ namespace AlibabaCloud
|
||||
DetectPedestrianIntrusionRequest();
|
||||
~DetectPedestrianIntrusionRequest();
|
||||
|
||||
Array getDetectRegion()const;
|
||||
void setDetectRegion(const Array& detectRegion);
|
||||
std::string getRegionType()const;
|
||||
void setRegionType(const std::string& regionType);
|
||||
std::string getImageURL()const;
|
||||
void setImageURL(const std::string& imageURL);
|
||||
Array getRegion()const;
|
||||
void setRegion(const Array& region);
|
||||
|
||||
private:
|
||||
Array detectRegion_;
|
||||
std::string regionType_;
|
||||
std::string imageURL_;
|
||||
Array region_;
|
||||
|
||||
};
|
||||
}
|
||||
|
||||
@@ -27,6 +27,17 @@ DetectPedestrianIntrusionRequest::DetectPedestrianIntrusionRequest() :
|
||||
DetectPedestrianIntrusionRequest::~DetectPedestrianIntrusionRequest()
|
||||
{}
|
||||
|
||||
Array DetectPedestrianIntrusionRequest::getDetectRegion()const
|
||||
{
|
||||
return detectRegion_;
|
||||
}
|
||||
|
||||
void DetectPedestrianIntrusionRequest::setDetectRegion(const Array& detectRegion)
|
||||
{
|
||||
detectRegion_ = detectRegion;
|
||||
setBodyParameter("DetectRegion", std::to_string(detectRegion));
|
||||
}
|
||||
|
||||
std::string DetectPedestrianIntrusionRequest::getRegionType()const
|
||||
{
|
||||
return regionType_;
|
||||
@@ -49,14 +60,3 @@ void DetectPedestrianIntrusionRequest::setImageURL(const std::string& imageURL)
|
||||
setBodyParameter("ImageURL", imageURL);
|
||||
}
|
||||
|
||||
Array DetectPedestrianIntrusionRequest::getRegion()const
|
||||
{
|
||||
return region_;
|
||||
}
|
||||
|
||||
void DetectPedestrianIntrusionRequest::setRegion(const Array& region)
|
||||
{
|
||||
region_ = region;
|
||||
setBodyParameter("Region", std::to_string(region));
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user