com.aliyun.alinlp20200629.models.GetNerChMedicalRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alinlp20200629 Show documentation
Show all versions of alinlp20200629 Show documentation
Alibaba Cloud alinlp (20200629) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.alinlp20200629.models;
import com.aliyun.tea.*;
public class GetNerChMedicalRequest extends TeaModel {
@NameInMap("ServiceCode")
@Validation(required = true)
public String serviceCode;
@NameInMap("Text")
@Validation(required = true)
public String text;
public static GetNerChMedicalRequest build(java.util.Map map) throws Exception {
GetNerChMedicalRequest self = new GetNerChMedicalRequest();
return TeaModel.build(map, self);
}
}