All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.dingtalkjzcrm_1_0.models.GetDataViewRequest Maven / Gradle / Ivy

There is a newer version: 2.1.50
Show newest version
// 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 {
    // 数据类型,参考数据类型ID对照表
    @NameInMap("datatype")
    public String datatype;

    // 数据id
    @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 - 2024 Weber Informatics LLC | Privacy Policy