com.aliyun.alinlp20200629.models.GetWsCustomizedSeaGeneralRequest 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 GetWsCustomizedSeaGeneralRequest extends TeaModel {
@NameInMap("ServiceCode")
@Validation(required = true)
public String serviceCode;
@NameInMap("Text")
@Validation(required = true)
public String text;
@NameInMap("Language")
@Validation(required = true)
public String language;
public static GetWsCustomizedSeaGeneralRequest build(java.util.Map map) throws Exception {
GetWsCustomizedSeaGeneralRequest self = new GetWsCustomizedSeaGeneralRequest();
return TeaModel.build(map, self);
}
}