com.aliyun.ocr.models.RecognizeIdentityCardRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ocr Show documentation
Show all versions of ocr Show documentation
Aliyun OCR SDK for Java
Copyright (C) Alibaba Cloud Computing
All rights reserved.
版权所有 (C)阿里云计算有限公司
http://www.aliyun.com
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ocr.models;
import com.aliyun.tea.*;
public class RecognizeIdentityCardRequest extends TeaModel {
@NameInMap("ImageURL")
@Validation(required = true)
public String imageURL;
@NameInMap("Side")
@Validation(required = true)
public String side;
public static RecognizeIdentityCardRequest build(java.util.Map map) throws Exception {
RecognizeIdentityCardRequest self = new RecognizeIdentityCardRequest();
return TeaModel.build(map, self);
}
}