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/RecognizeDriverLicenseRequest.h> 18 19 using AlibabaCloud::Ocr::Model::RecognizeDriverLicenseRequest; 20 RecognizeDriverLicenseRequest()21RecognizeDriverLicenseRequest::RecognizeDriverLicenseRequest() : 22 RpcServiceRequest("ocr", "2019-12-30", "RecognizeDriverLicense") 23 { 24 setMethod(HttpRequest::Method::Post); 25 } 26 ~RecognizeDriverLicenseRequest()27RecognizeDriverLicenseRequest::~RecognizeDriverLicenseRequest() 28 {} 29 getImageType() const30int RecognizeDriverLicenseRequest::getImageType()const 31 { 32 return imageType_; 33 } 34 setImageType(int imageType)35void RecognizeDriverLicenseRequest::setImageType(int imageType) 36 { 37 imageType_ = imageType; 38 setBodyParameter("ImageType", std::to_string(imageType)); 39 } 40 getSide() const41std::string RecognizeDriverLicenseRequest::getSide()const 42 { 43 return side_; 44 } 45 setSide(const std::string & side)46void RecognizeDriverLicenseRequest::setSide(const std::string& side) 47 { 48 side_ = side; 49 setBodyParameter("Side", side); 50 } 51 getImageURL() const52std::string RecognizeDriverLicenseRequest::getImageURL()const 53 { 54 return imageURL_; 55 } 56 setImageURL(const std::string & imageURL)57void RecognizeDriverLicenseRequest::setImageURL(const std::string& imageURL) 58 { 59 imageURL_ = imageURL; 60 setBodyParameter("ImageURL", imageURL); 61 } 62 63