1 /*
2  * Copyright 2009-2017 Alibaba Cloud All rights reserved.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 #include <alibabacloud/ocr/model/RecognizeDrivingLicenseRequest.h>
18 
19 using AlibabaCloud::Ocr::Model::RecognizeDrivingLicenseRequest;
20 
RecognizeDrivingLicenseRequest()21 RecognizeDrivingLicenseRequest::RecognizeDrivingLicenseRequest() :
22 	RpcServiceRequest("ocr", "2019-12-30", "RecognizeDrivingLicense")
23 {
24 	setMethod(HttpRequest::Method::Post);
25 }
26 
~RecognizeDrivingLicenseRequest()27 RecognizeDrivingLicenseRequest::~RecognizeDrivingLicenseRequest()
28 {}
29 
getImageType() const30 int RecognizeDrivingLicenseRequest::getImageType()const
31 {
32 	return imageType_;
33 }
34 
setImageType(int imageType)35 void RecognizeDrivingLicenseRequest::setImageType(int imageType)
36 {
37 	imageType_ = imageType;
38 	setBodyParameter("ImageType", std::to_string(imageType));
39 }
40 
getSide() const41 std::string RecognizeDrivingLicenseRequest::getSide()const
42 {
43 	return side_;
44 }
45 
setSide(const std::string & side)46 void RecognizeDrivingLicenseRequest::setSide(const std::string& side)
47 {
48 	side_ = side;
49 	setBodyParameter("Side", side);
50 }
51 
getImageURL() const52 std::string RecognizeDrivingLicenseRequest::getImageURL()const
53 {
54 	return imageURL_;
55 }
56 
setImageURL(const std::string & imageURL)57 void RecognizeDrivingLicenseRequest::setImageURL(const std::string& imageURL)
58 {
59 	imageURL_ = imageURL;
60 	setBodyParameter("ImageURL", imageURL);
61 }
62 
63