/* * Copyright 2016 Baidu, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. */ package com.baidubce.services.ocr.model; import com.baidubce.BceClientException; import com.baidubce.auth.BceCredentials; import com.baidubce.model.AbstractBceRequest; import com.fasterxml.jackson.annotation.JsonProperty; import java.io.UnsupportedEncodingException; /** * Created by lvsiyuan on 16/11/23. */ public class IdcardRecognitionRequest extends FormAbstractBceRequest { /* * Required. The image data which needs to be base64. */ private String image; /* * Optional. The side of idcard image. (front/back) */ @JsonProperty("id_card_side") private String side; /* * Optional. Decide if the image has been rotated. (true/false) */ @JsonProperty("detect_direction") private Boolean direction = false; public String getImage() { return image; } public void setImage(String image) { this.image = image; } public IdcardRecognitionRequest withImage(String image) { this.image = image; return this; } public String getSide() { return side; } public void setSide(String side) { this.side = side; } public IdcardRecognitionRequest withSide(String side) { this.side = side; return this; } public Boolean getDirection() { return direction; } public void setDirection(Boolean direction) { this.direction = direction; } public IdcardRecognitionRequest withDirection(Boolean direction) { this.direction = direction; return this; } public String toFormString() { try { return "image=" + java.net.URLEncoder.encode(image, "UTF-8") + "&" + "id_card_side=" + side + "&" + "detect_direction=" + direction; } catch (UnsupportedEncodingException e) { throw new BceClientException("Unsupported encode.", e); } } @Override public AbstractBceRequest withRequestCredentials(BceCredentials credentials) { this.setRequestCredentials(credentials); return this; } @Override public String toString() { return "IdcardRecognitionRequest{" + "image='" + image + '\'' + ", side='" + side + '\'' + ", direction=" + direction + '}'; } }