com.aliyun.dingtalkjzcrm_1_0.models.GetDataViewRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dingtalk Show documentation
Show all versions of dingtalk Show documentation
Alibaba Cloud dingtalk SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkjzcrm_1_0.models;
import com.aliyun.tea.*;
public class GetDataViewRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* 150
*/
@NameInMap("datatype")
public String datatype;
/**
* This parameter is required.
*
* example:
* 1
*/
@NameInMap("msgid")
public Long msgid;
public static GetDataViewRequest build(java.util.Map map) throws Exception {
GetDataViewRequest self = new GetDataViewRequest();
return TeaModel.build(map, self);
}
public GetDataViewRequest setDatatype(String datatype) {
this.datatype = datatype;
return this;
}
public String getDatatype() {
return this.datatype;
}
public GetDataViewRequest setMsgid(Long msgid) {
this.msgid = msgid;
return this;
}
public Long getMsgid() {
return this.msgid;
}
}