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

com.aliyun.dingtalkdatacenter_1_0.models.QueryScreenTemplateRequest Maven / Gradle / Ivy

There is a newer version: 2.1.67
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkdatacenter_1_0.models;

import com.aliyun.tea.*;

public class QueryScreenTemplateRequest extends TeaModel {
    @NameInMap("operatorId")
    public String operatorId;

    @NameInMap("sample")
    public Boolean sample;

    public static QueryScreenTemplateRequest build(java.util.Map map) throws Exception {
        QueryScreenTemplateRequest self = new QueryScreenTemplateRequest();
        return TeaModel.build(map, self);
    }

    public QueryScreenTemplateRequest setOperatorId(String operatorId) {
        this.operatorId = operatorId;
        return this;
    }
    public String getOperatorId() {
        return this.operatorId;
    }

    public QueryScreenTemplateRequest setSample(Boolean sample) {
        this.sample = sample;
        return this;
    }
    public Boolean getSample() {
        return this.sample;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy