
com.aliyun.dingtalkjzcrm_1_0.models.GetDataViewRequest Maven / Gradle / Ivy
// 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;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy